git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d71a850
)
Fixed two quick bugs from the JSLint overhaul.
author
John Resig
<jeresig@gmail.com>
Tue, 16 May 2006 22:32:15 +0000
(22:32 +0000)
committer
John Resig
<jeresig@gmail.com>
Tue, 16 May 2006 22:32:15 +0000
(22:32 +0000)
jquery/jquery.js
patch
|
blob
|
history
diff --git
a/jquery/jquery.js
b/jquery/jquery.js
index
bd25ed2
..
e9db33d
100644
(file)
--- a/
jquery/jquery.js
+++ b/
jquery/jquery.js
@@
-43,7
+43,7
@@
function $(a,c) {
// The only two getters
size: function() {return this.get().length;},
get: function(i) {
- return i === null ? this.cur : this.cur[i];
+ return typeof i == 'undefined' ? this.cur : this.cur[i];
},
each: function(f) {
@@
-620,7
+620,7
@@
$.filter = function(t,r,not) {
}
if ( f !== null ) {
- f = new Function('a','i','return ' + f);
+ eval('f = function(a,i){return ' + f + '}');
r = g( r, f );
}
}