Browse Source

#285533: The word 'false' appears in the menu, by dellis, remi, Roger Lopez

Roger López 16 years ago
parent
commit
5c42f3c952
1 changed files with 2 additions and 2 deletions
  1. 2 2
      simplemenu.js

+ 2 - 2
simplemenu.js

@@ -36,11 +36,11 @@ $(document).ready(function() {
     } )
   	.find(">li:has(ul)")
   		.mouseover(function(){
-  			$("ul", this).bgIframe({opacity:false});
+  			$("ul", this).bgIframe();
   		})
   		.find("a")
   			.focus(function(){
-  				$("ul", $(".nav>li:has(ul)")).bgIframe({opacity:false});
+  				$("ul", $(".nav>li:has(ul)")).bgIframe();
   			})
   	  .end()
   	.end()