From: John Resig Date: Wed, 22 Aug 2007 06:47:44 +0000 (+0000) Subject: Fixed bug with the packed version of jQuery. X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;h=3fb4779abbd4c8b12efda6a5648da8a7e002cab2;p=jquery.git Fixed bug with the packed version of jQuery. --- diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index 9bcec93..9cff1cd 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1434,7 +1434,7 @@ jQuery.extend({ fn.call( obj[i], i, obj[i] ); else for ( var i = 0, ol = obj.length, val = obj[0]; - i < ol && fn.call(val,i,val) !== false; val = obj[++i] ); + i < ol && fn.call(val,i,val) !== false; val = obj[++i] ){} } return obj;