From c4d4182f0f96cca5847ea3ecd756d29c585c60e7 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Wed, 4 Feb 2009 23:20:53 +0000 Subject: [PATCH] Prototype fix for yellow hoverhelp lines in opera/firefox. --- www/extras/hoverhelp.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/www/extras/hoverhelp.js b/www/extras/hoverhelp.js index 21c304889..a1a988637 100644 --- a/www/extras/hoverhelp.js +++ b/www/extras/hoverhelp.js @@ -13,8 +13,10 @@ function initHoverHelp (root) { for (var i = tips.length; i--; ) { var myTip = new YAHOO.widget.Tooltip(tips[i], { autodismissdelay: 1000000, - context: tips[i].parentNode + context: tips[i].parentNode, + text : tips[i].innerHTML }); + tips[i].innerHTML = ""; } } YAHOO.util.Event.onDOMReady(initHoverHelp,'');