aboutsummaryrefslogtreecommitdiffstats
path: root/src/fx.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/fx.js')
-rw-r--r--src/fx.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/fx.js b/src/fx.js
index 64cfbc625..824616afb 100644
--- a/src/fx.js
+++ b/src/fx.js
@@ -188,8 +188,7 @@ var queue = function( elem, type, array ) {
var q = jQuery.data( elem, type + "queue" );
if ( !q || array )
- q = jQuery.data( elem, type + "queue",
- array ? jQuery.makeArray(array) : [] );
+ q = jQuery.data( elem, type + "queue", jQuery.makeArray(array) );
return q;
};