This finally catches errors in Firebug for me.
authorJan Schneider <jan@horde.org>
Thu, 12 Aug 2010 17:43:11 +0000 (19:43 +0200)
committerJan Schneider <jan@horde.org>
Thu, 12 Aug 2010 17:45:00 +0000 (19:45 +0200)
horde/js/tooltips.js

index e89a327..737efb8 100644 (file)
@@ -21,7 +21,9 @@ var Horde_ToolTips =
             return;
         }
         e.store('nicetitle', t);
-        e.title = '';
+        try {
+            e.removeAttribute('title');
+        } catch (e) {}
         e.observe('mouseover', this.onMouseover.bindAsEventListener(this));
         e.observe('mouseout', this.out.bind(this));
         e.observe('focus', this.onFocus.bindAsEventListener(this));