diff --git a/mindplot/src/main/javascript/widget/LinkIconTooltip.js b/mindplot/src/main/javascript/widget/LinkIconTooltip.js index 3cadface..e4b6925d 100644 --- a/mindplot/src/main/javascript/widget/LinkIconTooltip.js +++ b/mindplot/src/main/javascript/widget/LinkIconTooltip.js @@ -21,14 +21,23 @@ mindplot.widget.LinkIconTooltip = new Class({ initialize:function (linkIcon) { $assert(linkIcon, "linkIcon can not be null"); - this.parent($(linkIcon.getImage()._peer._native), { + var nativeElement = $(linkIcon.getImage()._peer._native); + this.parent(nativeElement, { // Content can also be a function of the target element! content:this._buildContent(linkIcon), html:true, placement:'bottom', container: 'body', - title: $msg('LINK') + title: $msg('LINK'), + trigger: "manual", + template: '' }); + var me = this; + nativeElement.mouseenter( + function() { + me.show(); + } + ); }, _buildContent:function (linkIcon) {