From: Jan Schneider Date: Thu, 12 Aug 2010 17:43:11 +0000 (+0200) Subject: This finally catches errors in Firebug for me. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=008590864692b24e390bc64c965718cf169f1e67;p=horde.git This finally catches errors in Firebug for me. --- diff --git a/horde/js/tooltips.js b/horde/js/tooltips.js index e89a3277f..737efb826 100644 --- a/horde/js/tooltips.js +++ b/horde/js/tooltips.js @@ -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));