From: Jan Schneider Date: Thu, 24 Jun 2010 15:48:09 +0000 (+0200) Subject: We already know that the title is not empty. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=fee134d1813a1f8f4f9e784165174d9255f657f3;p=horde.git We already know that the title is not empty. --- diff --git a/horde/js/tooltips.js b/horde/js/tooltips.js index 60bd4741c..e89a3277f 100644 --- a/horde/js/tooltips.js +++ b/horde/js/tooltips.js @@ -21,9 +21,7 @@ var Horde_ToolTips = return; } e.store('nicetitle', t); - if (!e.title.empty()) { - e.title = ''; - } + e.title = ''; e.observe('mouseover', this.onMouseover.bindAsEventListener(this)); e.observe('mouseout', this.out.bind(this)); e.observe('focus', this.onFocus.bindAsEventListener(this));