No ticket: fix indentation. Close gh-1224.

This commit is contained in:
Michał Gołębiowski 2013-04-07 05:48:48 +02:00 committed by Richard Gibson
parent f0ea912375
commit 8f4bebea7d

View File

@ -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;
});
}