replication support: missing file
This commit is contained in:
15
js/mootools_common.js
Normal file
15
js/mootools_common.js
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||||||
|
/**
|
||||||
|
* Used for replication support
|
||||||
|
*
|
||||||
|
* @version $Id:
|
||||||
|
*/
|
||||||
|
|
||||||
|
function divShowHideFunc(ahref, id) {
|
||||||
|
$(ahref).addEvent('click', function() {
|
||||||
|
if ($(id).getStyle('display')=="none")
|
||||||
|
$(id).tween('display', 'block');
|
||||||
|
else
|
||||||
|
$(id).tween('display', 'none');
|
||||||
|
});
|
||||||
|
}
|
Reference in New Issue
Block a user