X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Ffx.js;h=b4606a82fc49250a6effe0adaafdfe9ab1ca5614;hb=bdd6aca209fe79bc6a085693008436cce37d5b31;hp=c613f938dad3dbe58fa5ad328067ccc6bb5c2f6e;hpb=b3ec8edddd9261eef490f8317144e9c68c888819;p=jquery.git diff --git a/src/fx.js b/src/fx.js index c613f93..b4606a8 100644 --- a/src/fx.js +++ b/src/fx.js @@ -139,9 +139,6 @@ jQuery.fn.extend({ return queue( this[0], type ); return this.each(function(){ - if ( this.nodeType != 1) - return; - if ( fn.constructor == Array ) queue(this, type, fn); else { @@ -181,7 +178,7 @@ jQuery.fn.extend({ var queue = function( elem, type, array ) { if ( !elem ) - return; + return undefined; type = type || "fx"; @@ -418,4 +415,4 @@ jQuery.fx.step = { _default: function(fx){ fx.elem.style[ fx.prop ] = fx.now + fx.unit; } -}; \ No newline at end of file +};