From 440c08d768180cc668d0b2d77a9dfb14436555a5 Mon Sep 17 00:00:00 2001 From: Ariel Flesler Date: Mon, 12 May 2008 01:21:50 +0000 Subject: [PATCH] jquery core: Applied #1318 to jQuery.grep --- src/core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.js b/src/core.js index b9a2fed..a86ef8d 100644 --- a/src/core.js +++ b/src/core.js @@ -1177,7 +1177,7 @@ jQuery.extend({ // Go through the array, only saving the items // that pass the validator function for ( var i = 0, length = elems.length; i < length; i++ ) - if ( !inv && callback( elems[ i ], i ) || inv && !callback( elems[ i ], i ) ) + if ( !inv != !callback( elems[ i ], i ) ) ret.push( elems[ i ] ); return ret; -- 1.7.10.4