@@ -554,9 +554,13 @@ function leverageNative( el, type, expectSync ) {
554
554
if ( ( event . isTrigger & 1 ) && this [ type ] ) {
555
555
556
556
// Interrupt processing of the outer synthetic .trigger()ed event
557
- if ( ! saved ) {
557
+ // Saved data should be false in such cases, but might be a leftover capture object
558
+ // from an async native handler (gh-4350)
559
+ if ( ! saved . length ) {
558
560
559
561
// Store arguments for use when handling the inner native event
562
+ // There will always be at least one argument (an event object), so this array
563
+ // will not be confused with a leftover capture object.
560
564
saved = slice . call ( arguments ) ;
561
565
dataPriv . set ( this , type , saved ) ;
562
566
@@ -569,14 +573,14 @@ function leverageNative( el, type, expectSync ) {
569
573
if ( saved !== result || notAsync ) {
570
574
dataPriv . set ( this , type , false ) ;
571
575
} else {
572
- result = undefined ;
576
+ result = { } ;
573
577
}
574
578
if ( saved !== result ) {
575
579
576
580
// Cancel the outer synthetic event
577
581
event . stopImmediatePropagation ( ) ;
578
582
event . preventDefault ( ) ;
579
- return result ;
583
+ return result . value ;
580
584
}
581
585
582
586
// If this is an inner synthetic event for an event with a bubbling surrogate
@@ -591,17 +595,19 @@ function leverageNative( el, type, expectSync ) {
591
595
592
596
// If this is a native event triggered above, everything is now in order
593
597
// Fire an inner synthetic event with the original arguments
594
- } else if ( saved ) {
598
+ } else if ( saved . length ) {
595
599
596
600
// ...and capture the result
597
- dataPriv . set ( this , type , jQuery . event . trigger (
598
-
599
- // Support: IE <=9 - 11+
600
- // Extend with the prototype to reset the above stopImmediatePropagation()
601
- jQuery . extend ( saved . shift ( ) , jQuery . Event . prototype ) ,
602
- saved ,
603
- this
604
- ) ) ;
601
+ dataPriv . set ( this , type , {
602
+ value : jQuery . event . trigger (
603
+
604
+ // Support: IE <=9 - 11+
605
+ // Extend with the prototype to reset the above stopImmediatePropagation()
606
+ jQuery . extend ( saved [ 0 ] , jQuery . Event . prototype ) ,
607
+ saved . slice ( 1 ) ,
608
+ this
609
+ )
610
+ } ) ;
605
611
606
612
// Abort handling of the native event
607
613
event . stopImmediatePropagation ( ) ;
0 commit comments