removing console logs

This commit is contained in:
Ezequiel Bergamaschi 2014-05-21 23:53:56 -03:00
parent e6badad763
commit 153cff8205
2 changed files with 2 additions and 9 deletions

View File

@ -30,7 +30,6 @@ mindplot.NoteIcon = new Class({
}, },
_registerEvents:function () { _registerEvents:function () {
console.log('entro');
this._image.setCursor('pointer'); this._image.setCursor('pointer');
var me = this; var me = this;

View File

@ -37,19 +37,13 @@ mindplot.widget.FloatingTip = new Class({
element.popover(this.options); element.popover(this.options);
}, },
show: function (element) { show: function () {
if (element) {
console.error('element is not necessary');
}
this.element.popover('show'); this.element.popover('show');
this.fireEvent('show'); this.fireEvent('show');
return this; return this;
}, },
hide: function (element) { hide: function () {
if (element) {
console.error('element is not necessary');
}
this.element.popover('hide'); this.element.popover('hide');
this.fireEvent('hide'); this.fireEvent('hide');
return this; return this;