diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2007-01-15 10:29:13 +0000 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2007-01-15 10:29:13 +0000 |
commit | 8b51bfbd3212a0bcaa35177056d0932b63eb268f (patch) | |
tree | 9a086c5fbdc080d7444c5d8cd45eae0dea9612e7 /src/fx | |
parent | 2aa67026ebe6bea90fd137fc99b4c9422977e3f0 (diff) | |
download | jquery-8b51bfbd3212a0bcaa35177056d0932b63eb268f.tar.gz jquery-8b51bfbd3212a0bcaa35177056d0932b63eb268f.zip |
Fixed show/hide to return selected objects, not only those that are shown/hidden
Diffstat (limited to 'src/fx')
-rw-r--r-- | src/fx/fx.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/fx/fx.js b/src/fx/fx.js index e39ea7b36..da9e49a27 100644 --- a/src/fx/fx.js +++ b/src/fx/fx.js @@ -34,7 +34,7 @@ jQuery.fn.extend({ */ show: function(speed,callback){ var hidden = this.filter(":hidden"); - return speed ? + speed ? hidden.animate({ height: "show", width: "show", opacity: "show" }, speed, callback) : @@ -44,6 +44,7 @@ jQuery.fn.extend({ if ( jQuery.css(this,"display") == "none" ) this.style.display = "block"; }); + return this; }, /** @@ -80,7 +81,7 @@ jQuery.fn.extend({ */ hide: function(speed,callback){ var visible = this.filter(":visible"); - return speed ? + speed ? visible.animate({ height: "hide", width: "hide", opacity: "hide" }, speed, callback) : @@ -91,6 +92,7 @@ jQuery.fn.extend({ this.oldblock = "block"; this.style.display = "none"; }); + return this; }, // Save the old toggle function |