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:
500ff12
)
Fixed some bugs in how .queue() works (it wasn't handling the argument order correctly).
author
John Resig
<jeresig@gmail.com>
Fri, 14 Sep 2007 17:47:01 +0000
(17:47 +0000)
committer
John Resig
<jeresig@gmail.com>
Fri, 14 Sep 2007 17:47:01 +0000
(17:47 +0000)
src/fx.js
patch
|
blob
|
history
diff --git
a/src/fx.js
b/src/fx.js
index
87af7e0
..
67af130
100644
(file)
--- a/
src/fx.js
+++ b/
src/fx.js
@@
-129,12
+129,12
@@
jQuery.fn.extend({
},
queue: function(type, fn){
- if ( !fn ) {
+ if ( jQuery.isFunction(type) ) {
fn = type;
type = "fx";
}
- if ( !arguments.length )
+ if ( !type || typeof type == "string" )
return queue( this[0], type );
return this.each(function(){