Skip to content

Commit 9ab26aa

Browse files
committed
Event: Simplify the check for saved data in leverageNative
Previously, when `leverageNative` handled async events, there was a case where an empty placeholder object was set as a result. Covering both such an object and `false` required a `length` check. However, this is not necessary since gh-5223 and the check was already simplified in other places; this one was missed. Closes gh-5236 Ref gh-5223 (cherry picked from commit dfe212d)
1 parent 14685b3 commit 9ab26aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/event.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ function leverageNative( el, type, isSetup ) {
570570

571571
// If this is a native event triggered above, everything is now in order
572572
// Fire an inner synthetic event with the original arguments
573-
} else if ( saved.length ) {
573+
} else if ( saved ) {
574574

575575
// ...and capture the result
576576
dataPriv.set( this, type, jQuery.event.trigger(

0 commit comments

Comments
 (0)