Bladeren bron

#102423 fix anchor title from interfering with links, patch by quicksketch

Ted Serbinski 18 jaren geleden
bovenliggende
commit
5ca8a4fc6c
1 gewijzigde bestanden met toevoegingen van 4 en 4 verwijderingen
  1. 4 4
      simplemenu.js

+ 4 - 4
simplemenu.js

@@ -9,9 +9,9 @@ $(document).ready(function() {
   
   // Drupal menu callback
   $('#menubar').load(basePath + 'menu_bar/menu', function() {
-      $('li', this).hover(function() {
-        $('ul', this).slideDown(200);
-      }, function() { }
-    );
+    $('li', this).hover(function() {
+      $('ul', this).slideDown(200);
+    }, function() {});
+    $('a', this).title('');
   });
 });