diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2023-04-03 18:21:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-03 18:21:15 +0200 |
commit | dfe212d5a1eed6b4a67d1cbd04ece09bbac33699 (patch) | |
tree | f7ee2418416dab387fd3e38e9a1f0c2af60d2d53 | |
parent | 6ad3651dbfea9e9bb56e608f72b4ef2f97bd4e70 (diff) | |
download | jquery-dfe212d5a1eed6b4a67d1cbd04ece09bbac33699.tar.gz jquery-dfe212d5a1eed6b4a67d1cbd04ece09bbac33699.zip |
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
-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 c9a397c90..7c9e1d546 100644 --- a/src/event.js +++ b/src/event.js @@ -556,7 +556,7 @@ function leverageNative( el, type, isSetup ) { // If this is a native event triggered above, everything is now in order // Fire an inner synthetic event with the original arguments - } else if ( saved.length ) { + } else if ( saved ) { // ...and capture the result dataPriv.set( this, type, jQuery.event.trigger( |