projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5b645b4
)
This finally catches errors in Firebug for me.
author
Jan Schneider
<jan@horde.org>
Thu, 12 Aug 2010 17:43:11 +0000
(19:43 +0200)
committer
Jan Schneider
<jan@horde.org>
Thu, 12 Aug 2010 17:45:00 +0000
(19:45 +0200)
horde/js/tooltips.js
patch
|
blob
|
history
diff --git
a/horde/js/tooltips.js
b/horde/js/tooltips.js
index
e89a327
..
737efb8
100644
(file)
--- 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));