Allowing falsy values to be passed as a speed for show().

This commit is contained in:
Scott Gonzalez 2009-11-13 06:27:10 +08:00 committed by John Resig
parent ee9192d103
commit 231c875678

View file

@ -19,7 +19,7 @@ function genFx( type, num ){
jQuery.fn.extend({
show: function(speed,callback){
if ( speed !== undefined ) {
if ( speed ) {
return this.animate( genFx("show", 3), speed, callback);
} else {
for ( var i = 0, l = this.length; i < l; i++ ){