Browse Source

#144742 - don't show A titles

Ted Serbinski 17 years ago
parent
commit
67bf2e51ad
2 changed files with 8 additions and 2 deletions
  1. 3 1
      README.txt
  2. 5 1
      simplemenu.js

+ 3 - 1
README.txt

@@ -38,4 +38,6 @@ jQuery Superfish: http://users.tpg.com.au/j_birch/plugins/superfish/
 - #136478 - fix Opera compatibility  
 - remove RTL option; this conflicts with other changes and is properly implemented in Drupal 6   
 - new option to select which theme to style SimpleMenu with, or provide a custom one
-- #184051 - don't hardcode CSS, add class to body
+- #184051 - don't hardcode CSS, add class to body
+- #180106 - fix missing translatable strings"      
+- #144742 - don't show annoying A titles

+ 5 - 1
simplemenu.js

@@ -32,7 +32,11 @@ $(document).ready(function() {
   		.find("a")
   			.focus(function(){
   				$("ul", $(".nav>li:has(ul)")).bgIframe({opacity:false});
-  			});  			  			
+  			})
+  	  .end()
+  	.end()
+  	.find("a")
+  	  .removeAttr('title');  			  			
 	 
 	 $('#simplemenu').children('li.expanded').addClass('root');    
 });