diff options
author | jzaefferer <joern.zaefferer@gmail.com> | 2011-04-15 16:49:29 +0200 |
---|---|---|
committer | jzaefferer <joern.zaefferer@gmail.com> | 2011-04-15 16:49:29 +0200 |
commit | e609bebaae7f3f762dd61d92fb0529af9ef5f2d1 (patch) | |
tree | c56d909729fcb85242ca261542f1ebf5971da9f2 /ui/jquery.ui.tooltip.js | |
parent | 00559b388af76424878413cedcebee49e0a8c67e (diff) | |
download | jquery-ui-e609bebaae7f3f762dd61d92fb0529af9ef5f2d1.tar.gz jquery-ui-e609bebaae7f3f762dd61d92fb0529af9ef5f2d1.zip |
Custom tooltip animations based on widget-animations branch.
Diffstat (limited to 'ui/jquery.ui.tooltip.js')
-rw-r--r-- | ui/jquery.ui.tooltip.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/jquery.ui.tooltip.js b/ui/jquery.ui.tooltip.js index 534b3c947..bff17d7b5 100644 --- a/ui/jquery.ui.tooltip.js +++ b/ui/jquery.ui.tooltip.js @@ -91,7 +91,7 @@ $.widget("ui.tooltip", { }, this.options.position ) ).hide(); - tooltip.fadeIn(); + this._show( tooltip, this.options.show ); this._trigger( "open", event ); @@ -111,7 +111,7 @@ $.widget("ui.tooltip", { var tooltip = this._find( target ); target.removeAttr( "aria-describedby" ); - tooltip.fadeOut( function() { + this._hide( tooltip, this.options.hide, function() { $( this ).remove(); }); |