diff options
author | jzaefferer <joern.zaefferer@gmail.com> | 2011-04-15 16:53:05 +0200 |
---|---|---|
committer | jzaefferer <joern.zaefferer@gmail.com> | 2011-04-15 16:53:05 +0200 |
commit | 3950a0515d58a8af2840f419bcd5cb8fd28b4de2 (patch) | |
tree | 0de51b582019820edbd2684882d2775b63638f11 /ui/jquery.ui.tooltip.js | |
parent | e609bebaae7f3f762dd61d92fb0529af9ef5f2d1 (diff) | |
download | jquery-ui-3950a0515d58a8af2840f419bcd5cb8fd28b4de2.tar.gz jquery-ui-3950a0515d58a8af2840f419bcd5cb8fd28b4de2.zip |
Stop show animation on hide. Now that we don't reuse the tooltip
element, we can safely do that.
Diffstat (limited to 'ui/jquery.ui.tooltip.js')
-rw-r--r-- | ui/jquery.ui.tooltip.js | 1 |
1 files changed, 1 insertions, 0 deletions
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(); }); |