Fixed an issue with animated .toggle() not working.

This commit is contained in:
John Resig 2007-01-13 22:38:11 +00:00
parent 79c58b8406
commit 8507faea6e

View file

@ -112,11 +112,12 @@ jQuery.fn.extend({
* @cat Effects * @cat Effects
*/ */
toggle: function( fn, fn2 ){ toggle: function( fn, fn2 ){
return fn ? var args = arguments;
return fn && fn.constructor == Function && fn2 && fn2.constructor == Function ?
this._toggle( fn, fn2 ) : this._toggle( fn, fn2 ) :
this.each(function(){ this.each(function(){
jQuery(this)[ jQuery(this).is(":hidden") ? "show" : "hide" ] jQuery(this)[ jQuery(this).is(":hidden") ? "show" : "hide" ]
.apply( jQuery(this), arguments ); .apply( jQuery(this), args );
}); });
}, },