Explorar o código

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

Ted Serbinski %!s(int64=18) %!d(string=hai) anos
pai
achega
5ca8a4fc6c
Modificáronse 1 ficheiros con 4 adicións e 4 borrados
  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('');
   });
 });