Commit dece8fc12ebd3731a6fad08f9034740b739c7f55
1 parent
6963b91c
Exists in
master
and in
29 other branches
ActionItem85: fixing bug
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@772 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
1 changed file
with
1 additions
and
2 deletions
Show diff stats
public/javascripts/menu.js
... | ... | @@ -24,7 +24,6 @@ function prepareMenu(id, options) { |
24 | 24 | link.parentNode.style.zIndex = zIndex++; |
25 | 25 | link.subMenu = ul; |
26 | 26 | ul.linkControle = link; |
27 | - | |
28 | 27 | link.openSubMenu = |
29 | 28 | function ( isMouseClick ) { |
30 | 29 | if( this.subMenu.style.display == "block" ) { |
... | ... | @@ -43,7 +42,7 @@ function prepareMenu(id, options) { |
43 | 42 | } |
44 | 43 | link.closeSubMenu = function(){ this.subMenu.style.display = "none" } |
45 | 44 | |
46 | - link.onclick = function(){ this.openSubMenu(true); return false } | |
45 | + //link.onclick = function(){ this.openSubMenu(true); return false }Is not working | |
47 | 46 | |
48 | 47 | // onmouseout e onmouseover manipulam o menu para pessoas normais |
49 | 48 | // onblur e onfocus manipulam o menu para pessoas que precisam navegar com tab | ... | ... |