diff --git a/README.txt b/README.txt index 1fd13c1b..722ddb6a 100644 --- a/README.txt +++ b/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 \ No newline at end of file +- #184051 - don't hardcode CSS, add class to body +- #180106 - fix missing translatable strings" +- #144742 - don't show annoying A titles \ No newline at end of file diff --git a/simplemenu.js b/simplemenu.js index a5f15784..c444cff6 100644 --- a/simplemenu.js +++ b/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'); });