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,7 +24,6 @@ function prepareMenu(id, options) { | ||
24 | link.parentNode.style.zIndex = zIndex++; | 24 | link.parentNode.style.zIndex = zIndex++; |
25 | link.subMenu = ul; | 25 | link.subMenu = ul; |
26 | ul.linkControle = link; | 26 | ul.linkControle = link; |
27 | - | ||
28 | link.openSubMenu = | 27 | link.openSubMenu = |
29 | function ( isMouseClick ) { | 28 | function ( isMouseClick ) { |
30 | if( this.subMenu.style.display == "block" ) { | 29 | if( this.subMenu.style.display == "block" ) { |
@@ -43,7 +42,7 @@ function prepareMenu(id, options) { | @@ -43,7 +42,7 @@ function prepareMenu(id, options) { | ||
43 | } | 42 | } |
44 | link.closeSubMenu = function(){ this.subMenu.style.display = "none" } | 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 | // onmouseout e onmouseover manipulam o menu para pessoas normais | 47 | // onmouseout e onmouseover manipulam o menu para pessoas normais |
49 | // onblur e onfocus manipulam o menu para pessoas que precisam navegar com tab | 48 | // onblur e onfocus manipulam o menu para pessoas que precisam navegar com tab |