diff -r ae16691d183d -r 18ca612e9ff0 src/js/widgets/tooltipWidget.js --- a/src/js/widgets/tooltipWidget.js Tue Mar 06 13:26:51 2012 +0100 +++ b/src/js/widgets/tooltipWidget.js Thu Mar 08 18:38:46 2012 +0100 @@ -21,6 +21,10 @@ "position": "relative" }); this.selector.append(templ); + var _this = this; + this.selector.mouseover(function() { + _this.hide(); + }); this.hide(); };