Fixed some bugs in how .queue() works (it wasn't handling the argument order correctly).
This commit is contained in:
parent
500ff12d5d
commit
41590d37e1
1 changed files with 2 additions and 2 deletions
|
@ -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(){
|
||||
|
|
Loading…
Reference in a new issue