Fixed show/hide to return selected objects, not only those that are shown/hidden

This commit is contained in:
Jörn Zaefferer 2007-01-15 10:29:13 +00:00
parent 2aa67026eb
commit 8b51bfbd32

View file

@ -34,7 +34,7 @@ jQuery.fn.extend({
*/ */
show: function(speed,callback){ show: function(speed,callback){
var hidden = this.filter(":hidden"); var hidden = this.filter(":hidden");
return speed ? speed ?
hidden.animate({ hidden.animate({
height: "show", width: "show", opacity: "show" height: "show", width: "show", opacity: "show"
}, speed, callback) : }, speed, callback) :
@ -44,6 +44,7 @@ jQuery.fn.extend({
if ( jQuery.css(this,"display") == "none" ) if ( jQuery.css(this,"display") == "none" )
this.style.display = "block"; this.style.display = "block";
}); });
return this;
}, },
/** /**
@ -80,7 +81,7 @@ jQuery.fn.extend({
*/ */
hide: function(speed,callback){ hide: function(speed,callback){
var visible = this.filter(":visible"); var visible = this.filter(":visible");
return speed ? speed ?
visible.animate({ visible.animate({
height: "hide", width: "hide", opacity: "hide" height: "hide", width: "hide", opacity: "hide"
}, speed, callback) : }, speed, callback) :
@ -91,6 +92,7 @@ jQuery.fn.extend({
this.oldblock = "block"; this.oldblock = "block";
this.style.display = "none"; this.style.display = "none";
}); });
return this;
}, },
// Save the old toggle function // Save the old toggle function