diff options
author | David Serduke <davidserduke@gmail.com> | 2007-12-16 01:03:50 +0000 |
---|---|---|
committer | David Serduke <davidserduke@gmail.com> | 2007-12-16 01:03:50 +0000 |
commit | feb9051c0e29937c2494c3db0862a671efc21747 (patch) | |
tree | ce161797e819605912d0f91606b87cd74a27f87a /src/fx.js | |
parent | 4e339ef5573dc6472c00c01a3de883346e6b03a3 (diff) | |
download | jquery-feb9051c0e29937c2494c3db0862a671efc21747.tar.gz jquery-feb9051c0e29937c2494c3db0862a671efc21747.zip |
Fixed #1781 for warnings created on load by FF javascript.options.strict == true.
Diffstat (limited to 'src/fx.js')
-rw-r--r-- | src/fx.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -181,7 +181,7 @@ jQuery.fn.extend({ var queue = function( elem, type, array ) { if ( !elem ) - return; + return undefined; type = type || "fx"; @@ -418,4 +418,4 @@ jQuery.fx.step = { _default: function(fx){ fx.elem.style[ fx.prop ] = fx.now + fx.unit; } -};
\ No newline at end of file +}; |