aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2007-08-22 06:47:44 +0000
committerJohn Resig <jeresig@gmail.com>2007-08-22 06:47:44 +0000
commit3fb4779abbd4c8b12efda6a5648da8a7e002cab2 (patch)
tree0ad1208f354f711303817e0e9a56509a7e9e6d2f /src
parent96f2d0d00ba58f6b23dc5658e6c747526e9254d9 (diff)
downloadjquery-3fb4779abbd4c8b12efda6a5648da8a7e002cab2.tar.gz
jquery-3fb4779abbd4c8b12efda6a5648da8a7e002cab2.zip
Fixed bug with the packed version of jQuery.
Diffstat (limited to 'src')
-rw-r--r--src/jquery/jquery.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js
index 9bcec930f..9cff1cd24 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;