From 3950a0515d58a8af2840f419bcd5cb8fd28b4de2 Mon Sep 17 00:00:00 2001 From: jzaefferer Date: Fri, 15 Apr 2011 16:53:05 +0200 Subject: [PATCH] Stop show animation on hide. Now that we don't reuse the tooltip element, we can safely do that. --- ui/jquery.ui.tooltip.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/jquery.ui.tooltip.js b/ui/jquery.ui.tooltip.js index bff17d7b5..c481f6264 100644 --- a/ui/jquery.ui.tooltip.js +++ b/ui/jquery.ui.tooltip.js @@ -111,6 +111,7 @@ $.widget("ui.tooltip", { var tooltip = this._find( target ); target.removeAttr( "aria-describedby" ); + tooltip.stop(); this._hide( tooltip, this.options.hide, function() { $( this ).remove(); }); -- 2.39.5