From 3fb4779abbd4c8b12efda6a5648da8a7e002cab2 Mon Sep 17 00:00:00 2001 From: John Resig Date: Wed, 22 Aug 2007 06:47:44 +0000 Subject: [PATCH] Fixed bug with the packed version of jQuery. --- src/jquery/jquery.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 1.7.10.4