From: jeresig Date: Mon, 20 Sep 2010 14:41:58 +0000 (-0400) Subject: Removing extra arg. X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=commitdiff_plain;h=5b92cdd0488804ba689dab70c6f8443aae23bcf9 Removing extra arg. --- diff --git a/src/queue.js b/src/queue.js index 11c658f..23d4360 100644 --- a/src/queue.js +++ b/src/queue.js @@ -58,7 +58,7 @@ jQuery.fn.extend({ if ( data === undefined ) { return jQuery.queue( this[0], type ); } - return this.each(function( i, elem ) { + return this.each(function( i ) { var queue = jQuery.queue( this, type, data ); if ( type === "fx" && queue[0] !== "inprogress" ) {