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 () {
|
||||
console.log('entro');
|
||||
this._image.setCursor('pointer');
|
||||
var me = this;
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user