diff options
author | Silvio <s1lv10@uol.com.br> | 2009-10-01 12:36:47 -0300 |
---|---|---|
committer | Silvio <s1lv10@uol.com.br> | 2009-10-01 12:36:47 -0300 |
commit | 9ef5cf804397086c2b1c964d5d785cd884d2d8dd (patch) | |
tree | e26b872b883bb9ceccb40eb69eed7330dcfc3fc6 | |
parent | 5b98f9e4c97b9ddcf9590d5092224d06865f32d9 (diff) | |
download | finder_menu-9ef5cf804397086c2b1c964d5d785cd884d2d8dd.tar.gz finder_menu-9ef5cf804397086c2b1c964d5d785cd884d2d8dd.tar.bz2 |
Initial code to hide the menu (4)
-rw-r--r-- | finder_menu.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/finder_menu.js b/finder_menu.js index 7f08a94..378e7d6 100644 --- a/finder_menu.js +++ b/finder_menu.js @@ -74,7 +74,7 @@ function ul2finder() }
}
- if (window.finderOpened[i] == false) {
+ if (window.finderOpened[i] == false || window.finderOpened[i] == null) {
window.finderOpened[i] = true;
// change the current link from parent to open
cssjs('swap',this,parentClass,openClass);
|