git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7e9d853
)
Moved the fx queueing over to the new expando system.
author
John Resig
<jeresig@gmail.com>
Sun, 9 Sep 2007 16:17:32 +0000
(16:17 +0000)
committer
John Resig
<jeresig@gmail.com>
Sun, 9 Sep 2007 16:17:32 +0000
(16:17 +0000)
src/fx.js
patch
|
blob
|
history
diff --git
a/src/fx.js
b/src/fx.js
index
c708b1a
..
c45edc1
100644
(file)
--- a/
src/fx.js
+++ b/
src/fx.js
@@
-175,16
+175,13
@@
function queue( elem, type, array ) {
if ( !elem )
return;
- if ( !elem.queue )
- elem.queue = {};
+ var queue = jQuery.data( elem, type + "queue" );
- if ( !elem.queue[type] )
- elem.queue[type] = [];
+ if ( !queue || array )
+ queue = jQuery.data( elem, type + "queue",
+ array ? jQuery.makeArray(array) : [] );
- if ( array )
- elem.queue[type] = jQuery.makeArray(array);
-
- return elem.queue[type];
+ return queue;
}
jQuery.extend({