fix link icon tooltip bug

main
Ezequiel Bergamaschi 2014-08-17 17:56:08 -03:00
parent d821db27ba
commit f3c7667359
1 changed files with 3 additions and 1 deletions

View File

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