jarrod
28 Nov 2006, 10:11 AM
setTooltip : function(text){
this.titleEl.dom.title = text;
},
should be
setTooltip : function(text){
this.textEl.dom.title = text;
},
this.titleEl.dom.title = text;
},
should be
setTooltip : function(text){
this.textEl.dom.title = text;
},