diff options
-rw-r--r-- | src/traversing.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/traversing.js b/src/traversing.js index 6838cf223..26195f1be 100644 --- a/src/traversing.js +++ b/src/traversing.js @@ -255,8 +255,8 @@ jQuery.extend({ function winnow( elements, qualifier, not ) { if ( jQuery.isFunction( qualifier ) ) { return jQuery.grep( elements, function( elem, i ) { - /* jshint -W018 */ - return !!qualifier.call( elem, i, elem ) !== not; + /* jshint -W018 */ + return !!qualifier.call( elem, i, elem ) !== not; }); } |