aboutsummaryrefslogtreecommitdiffstats
path: root/src/fx.js
diff options
context:
space:
mode:
authorDavid Serduke <davidserduke@gmail.com>2007-12-16 01:03:50 +0000
committerDavid Serduke <davidserduke@gmail.com>2007-12-16 01:03:50 +0000
commitfeb9051c0e29937c2494c3db0862a671efc21747 (patch)
treece161797e819605912d0f91606b87cd74a27f87a /src/fx.js
parent4e339ef5573dc6472c00c01a3de883346e6b03a3 (diff)
downloadjquery-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.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fx.js b/src/fx.js
index c613f938d..fb564f07c 100644
--- a/src/fx.js
+++ b/src/fx.js
@@ -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
+};