another hover fix.

This commit is contained in:
Christopher Jeffrey 2015-04-27 23:57:08 -07:00
parent a5bfa4397a
commit 023e6be4e5
1 changed files with 1 additions and 1 deletions

View File

@ -3048,9 +3048,9 @@ Screen.prototype._initHover = function() {
this.on('element mouseover', function(el, data) { this.on('element mouseover', function(el, data) {
if (!el._hoverOptions) return; if (!el._hoverOptions) return;
self._hoverText.parseTags = el.parseTags;
self._hoverText.setContent(el._hoverOptions.text); self._hoverText.setContent(el._hoverOptions.text);
self.append(self._hoverText); self.append(self._hoverText);
self._hoverText.parseTags = el.parseTags;
self._hoverText.rleft = data.x + 1; self._hoverText.rleft = data.x + 1;
self._hoverText.rtop = data.y; self._hoverText.rtop = data.y;
self.render(); self.render();