Skip to content

Commit dfe212d

Browse files
authored
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
1 parent 6ad3651 commit dfe212d

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
@@ -556,7 +556,7 @@ function leverageNative( el, type, isSetup ) {
556556

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

561561
// ...and capture the result
562562
dataPriv.set( this, type, jQuery.event.trigger(

0 commit comments

Comments
 (0)