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 () {
console.log('entro');
this._image.setCursor('pointer');
var me = this;

View File

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