Index: t3lib/js/extjs/contexthelp.js =================================================================== --- t3lib/js/extjs/contexthelp.js (revision 10224) +++ t3lib/js/extjs/contexthelp.js (revision ) @@ -142,15 +142,19 @@ tip.el.on({ 'mouseover': { fn: function() { + if (tip.moreInfo) { - tip.isMouseOver = true; - } + tip.isMouseOver = true; + } + } }, 'mouseout': { fn: function() { + if (tip.moreInfo) { - tip.isMouseOver = false; + tip.isMouseOver = false; - tip.hide.defer(200, tip, []); + tip.hide.defer(tip.hideDelay, tip, []); - } - } + } + } + } }); }, hide: function(tip) { @@ -176,7 +180,7 @@ } } }); - + /** * Adds a sequence to Ext.TooltTip::showAt so as to increase vertical offset when anchor position is 'botton' * This positions the tip box closer to the target element when the anchor is on the bottom side of the box