diff options
author | Rick Waldron <waldron.rick@gmail.com> | 2011-10-06 16:36:15 -0400 |
---|---|---|
committer | Rick Waldron <waldron.rick@gmail.com> | 2011-10-06 16:36:15 -0400 |
commit | 3999d39b8437f13193ef1098e36227ffaca18362 (patch) | |
tree | a061516a112e91c2460099792c29396c66b37ea8 | |
parent | 4fd70e7e02d2cb4da150bf4090a6476661c71d2d (diff) | |
download | jquery-3999d39b8437f13193ef1098e36227ffaca18362.tar.gz jquery-3999d39b8437f13193ef1098e36227ffaca18362.zip |
Additional nits
-rw-r--r-- | src/event.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 ); |