mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-11 01:33:24 +01:00
removing console logs
This commit is contained in:
parent
1b682bc3c2
commit
7406aa8e5b
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user