From: John Resig Date: Tue, 18 Jan 2011 23:11:54 +0000 (-0500) Subject: Merge branch 'master' of https://github.com/mathiasbynens/jquery into mathiasbynens... X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=commitdiff_plain;h=fc7bd61200a447b361b7d561cf376c29c165aed7;hp=c5ec1cb3e5ce8d1f6d9b6175049a3886d3776a18 Merge branch 'master' of https://github.com/mathiasbynens/jquery into mathiasbynens-master --- diff --git a/build/uglify.js b/build/uglify.js old mode 100755 new mode 100644 diff --git a/src/traversing.js b/src/traversing.js index b36ce3d..929547c 100644 --- a/src/traversing.js +++ b/src/traversing.js @@ -204,7 +204,11 @@ jQuery.each({ }, function( name, fn ) { jQuery.fn[ name ] = function( until, selector ) { var ret = jQuery.map( this, fn, until ), - args = slice.call(arguments); + // The variable 'args' was introduced in + // https://github.com/jquery/jquery/commit/52a0238 + // to work around a bug in Chrome 10 (Dev) and should be removed when the bug is fixed. + // http://code.google.com/p/v8/issues/detail?id=1050 + args = slice.call(arguments); if ( !runtil.test( name ) ) { selector = until;