From d117309339ecb90cc5b2b088248c5a1ee119f4ea Mon Sep 17 00:00:00 2001 From: Farruco Sanjurjo Date: Wed, 25 Aug 2010 13:57:22 +0200 Subject: [PATCH] Renamed method at TaskComponent widget-class FEA: ItEr02S03MigracionZK5 --- .../main/resources/web/js/ganttz/TaskComponent.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ganttzk/src/main/resources/web/js/ganttz/TaskComponent.js b/ganttzk/src/main/resources/web/js/ganttz/TaskComponent.js index 69267019b..f54fe77cb 100644 --- a/ganttzk/src/main/resources/web/js/ganttz/TaskComponent.js +++ b/ganttzk/src/main/resources/web/js/ganttz/TaskComponent.js @@ -8,15 +8,15 @@ ganttz.TaskComponent = zk.$extends(zk.Widget, { }, bind_ : function(event){ this.$supers('bind_', arguments); - this.domListen_(this.$n(), "onMouseover", '_showToolTip'); - this.domListen_(this.$n(), "onMouseout", '_hideToolTip'); + this.domListen_(this.$n(), "onMouseover", '_showTooltip'); + this.domListen_(this.$n(), "onMouseout", '_hideTooltip'); }, unbind_ : function(event){ - this.domUnlisten_(this.$n(), "onMouseout", '_hideToolTip'); - this.domUnlisten_(this.$n(), "onMouseover", '_showToolTip'); + this.domUnlisten_(this.$n(), "onMouseout", '_hideTooltip'); + this.domUnlisten_(this.$n(), "onMouseover", '_showTooltip'); this.$supers('unbind_', arguments); }, - _showToolTip : function(){ + _showTooltip : function(){ this._tooltipTimeout = setTimeout(jq.proxy(function(offset) { var element = jq("#tasktooltip" + this.uuid); if (element!=null) { @@ -30,7 +30,7 @@ ganttz.TaskComponent = zk.$extends(zk.Widget, { } }, this), this.$class._TOOLTIP_DELAY); }, - _hideToolTip : function(){ + _hideTooltip : function(){ if (this._tooltipTimeout) { clearTimeout(this._tooltipTimeout); }