diff --git a/mindplot/src/main/javascript/NoteIcon.js b/mindplot/src/main/javascript/NoteIcon.js index b2a2944c..5954cec0 100644 --- a/mindplot/src/main/javascript/NoteIcon.js +++ b/mindplot/src/main/javascript/NoteIcon.js @@ -30,7 +30,6 @@ mindplot.NoteIcon = new Class({ }, _registerEvents:function () { - console.log('entro'); this._image.setCursor('pointer'); var me = this; diff --git a/mindplot/src/main/javascript/widget/FloatingTip.js b/mindplot/src/main/javascript/widget/FloatingTip.js index abbbd565..c5aa02b7 100644 --- a/mindplot/src/main/javascript/widget/FloatingTip.js +++ b/mindplot/src/main/javascript/widget/FloatingTip.js @@ -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;