From 3999d39b8437f13193ef1098e36227ffaca18362 Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Thu, 6 Oct 2011 16:36:15 -0400 Subject: [PATCH] Additional nits --- src/event.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/event.js b/src/event.js index 98e0b1765..64fa598c0 100644 --- a/src/event.js +++ b/src/event.js @@ -440,7 +440,7 @@ jQuery.event = { // Since .is() does not work for positionals; see http://jsfiddle.net/eJ4yd/3/ hit = ( hit || (selMatch[ sel ] = jQuery( sel )) ).index( cur ) >= 0; } else if ( hit === undefined ) { - hit = selMatch[ sel ] = ( handleObj.quick? quickIs( cur, handleObj.quick ) : jQuery(cur).is( sel ) ); + hit = selMatch[ sel ] = ( handleObj.quick ? quickIs( cur, handleObj.quick ) : jQuery( cur ).is( sel ) ); } if ( hit ) { matches.push( handleObj ); -- 2.39.5