#144742 - don't show A titles

This commit is contained in:
Ted Serbinski 2007-11-22 05:11:47 +00:00
parent 71f74b5565
commit 67bf2e51ad
2 changed files with 8 additions and 2 deletions

View File

@ -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

View File

@ -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');
});