hide tooltip when editor is shown

This commit is contained in:
Mariela Michalek 2014-08-03 20:34:30 -03:00
parent 658bbdf135
commit 05e44551a3

View File

@ -33,17 +33,18 @@ mindplot.LinkIcon = new Class({
_registerEvents:function () { _registerEvents:function () {
this._image.setCursor('pointer'); this._image.setCursor('pointer');
this._tip = new mindplot.widget.LinkIconTooltip(this);
var me = this; var me = this;
if (!this._readOnly) { if (!this._readOnly) {
// Add on click event to open the editor ... // Add on click event to open the editor ...
this.addEvent('click', function (event) { this.addEvent('click', function (event) {
me._tip.hide();
me._topic.showLinkEditor(); me._topic.showLinkEditor();
event.stopPropagation(); event.stopPropagation();
}); });
} }
this._tip = new mindplot.widget.LinkIconTooltip(this);
}, },
getModel:function () { getModel:function () {