src/js/widgets/tooltipWidget.js
branchpopcorn-port
changeset 830 18ca612e9ff0
parent 828 bcf0c2bdcb8e
child 874 38b65761a7d5
--- 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();
 
 };