diff options
author | Silvio <s1lv10@uol.com.br> | 2009-10-01 13:06:06 -0300 |
---|---|---|
committer | Silvio <s1lv10@uol.com.br> | 2009-10-01 13:06:06 -0300 |
commit | f5fa8fbf4bb5b7c848cbc209e90592d0056ad579 (patch) | |
tree | 92349c6408bf7238d2d5bbd5e39f04a96d762bb5 | |
parent | 45710acc0b955219681d57b4b44b92c6b02930c9 (diff) | |
download | finder_menu-f5fa8fbf4bb5b7c848cbc209e90592d0056ad579.tar.gz finder_menu-f5fa8fbf4bb5b7c848cbc209e90592d0056ad579.tar.bz2 |
Initial code to hide the menu (6)
-rw-r--r-- | finder_menu.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/finder_menu.js b/finder_menu.js index 951ac46..376ddd5 100644 --- a/finder_menu.js +++ b/finder_menu.js @@ -72,17 +72,18 @@ function ul2finder() }
}
- if (cssjs('check',this,parentClass)) {
- alert('yes');
+ if (this.isOpened == false || this.isOpened == null) {
+ this.isOpened = true;
// change the current link from parent to open
cssjs('swap',this,parentClass,openClass);
// show the current nested list
cssjs('add',this.parentNode.getElementsByTagName('ul')[0],showClass);
} else {
+ this.isOpened = false;
// change the current link from open to parent
cssjs('swap',this,openClass,parentClass);
// hide the current nested list
- cssjs('add',this.parentNode.getElementsByTagName('ul')[0],hideClass);
+ cssjs('remove',this.parentNode.getElementsByTagName('ul')[0],showClass);
}
// don't follow the real HREF of the link
|