remove bind from LinkIcon

This commit is contained in:
Mariela Michalek 2014-08-03 20:10:14 -03:00
parent 96aabe5386
commit 658bbdf135

View File

@ -34,12 +34,13 @@ mindplot.LinkIcon = new Class({
_registerEvents:function () { _registerEvents:function () {
this._image.setCursor('pointer'); this._image.setCursor('pointer');
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) {
this._topic.showLinkEditor(); me._topic.showLinkEditor();
event.stopPropagation(); event.stopPropagation();
}.bind(this)); });
} }
this._tip = new mindplot.widget.LinkIconTooltip(this); this._tip = new mindplot.widget.LinkIconTooltip(this);