This commit is contained in:
Marc Delisle
2009-12-31 13:11:19 +00:00
parent f3833884e4
commit 526dce65cb
894 changed files with 287313 additions and 0 deletions

15
js/mootools_common.js Normal file
View 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');
});
}