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:
fd30d77
)
Fixed .not([]) not working properly.
author
John Resig
<jeresig@gmail.com>
Thu, 11 Jan 2007 16:59:41 +0000
(16:59 +0000)
committer
John Resig
<jeresig@gmail.com>
Thu, 11 Jan 2007 16:59:41 +0000
(16:59 +0000)
src/jquery/jquery.js
patch
|
blob
|
history
diff --git
a/src/jquery/jquery.js
b/src/jquery/jquery.js
index
f942bf4
..
6070389
100644
(file)
--- a/
src/jquery/jquery.js
+++ b/
src/jquery/jquery.js
@@
-925,7
+925,7
@@
jQuery.fn = jQuery.prototype = {
jQuery.grep(this,function(a){
if ( t.constructor == Array || t.jquery )
- return !jQuery.inArray( t, a );
+ return jQuery.inArray( t, a ) < 0;
else
return a != t;
}) );