FloatingTip in ToolbarItem deleted

This commit is contained in:
Ezequiel Bergamaschi 2014-04-21 00:34:23 -03:00
parent 258abc232f
commit 928d65b024

View File

@ -26,27 +26,6 @@ mindplot.widget.ToolbarItem = new Class({
this._options = options;
this._enable = false;
this.enable();
// this._registerTip();
},
_registerTip: function() {
return new mindplot.widget.FloatingTip($("#"+this._buttonId), {
html: false,
position: 'bottom',
arrowOffset : 5,
center: true,
arrowSize: 5,
showDelay: 500,
hideDelay: 0,
className: 'toolbarTip',
motionOnShow:false,
motionOnHide:false,
motion: 0,
distance: 0,
preventHideOnOver:false
});
},
getButtonElem : function() {
@ -55,10 +34,6 @@ mindplot.widget.ToolbarItem = new Class({
return elem;
}.protect(),
getButtonId : function(){
return this._buttonId;
},
show : function() {
this.fireEvent('show');
},