diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2021-02-22 00:02:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-22 00:02:02 +0100 |
commit | 834ee5f7cfb621b5f75292915a00319927a9a6d0 (patch) | |
tree | 2de78ea42b2a31f91028becb68c7d332d83b9908 /ui | |
parent | 5b5fda7cd24e6265814ddda23b9af2ceef8bcd99 (diff) | |
download | jquery-ui-834ee5f7cfb621b5f75292915a00319927a9a6d0.tar.gz jquery-ui-834ee5f7cfb621b5f75292915a00319927a9a6d0.zip |
Dialog: Workaround broken focus re-triggering in jQuery 3.4/3.5
Focus re-triggering in jQuery 3.4/3.5 makes the original element
have its focus event propagated last, breaking the re-targeting.
Trigger focus in a delay in addition if needed to avoid the issue.
This fixes the "interaction between overlay and other dialogs" core dialog
test when tested against jQuery 3.4/3.5.
Closes gh-1946
Ref jquery/jquery#4382
Diffstat (limited to 'ui')
-rw-r--r-- | ui/widgets/dialog.js | 32 |
1 files changed, 22 insertions, 10 deletions
diff --git a/ui/widgets/dialog.js b/ui/widgets/dialog.js index c9feee48a..dcb4f7056 100644 --- a/ui/widgets/dialog.js +++ b/ui/widgets/dialog.js @@ -325,22 +325,23 @@ $.widget( "ui.dialog", { hasFocus.eq( 0 ).trigger( "focus" ); }, - _keepFocus: function( event ) { - function checkFocus() { - var activeElement = $.ui.safeActiveElement( this.document[ 0 ] ), - isActive = this.uiDialog[ 0 ] === activeElement || - $.contains( this.uiDialog[ 0 ], activeElement ); - if ( !isActive ) { - this._focusTabbable(); - } + _restoreTabbableFocus: function() { + var activeElement = $.ui.safeActiveElement( this.document[ 0 ] ), + isActive = this.uiDialog[ 0 ] === activeElement || + $.contains( this.uiDialog[ 0 ], activeElement ); + if ( !isActive ) { + this._focusTabbable(); } + }, + + _keepFocus: function( event ) { event.preventDefault(); - checkFocus.call( this ); + this._restoreTabbableFocus(); // support: IE // IE <= 8 doesn't prevent moving focus even with event.preventDefault() // so we check again later - this._delay( checkFocus ); + this._delay( this._restoreTabbableFocus ); }, _createWrapper: function() { @@ -853,6 +854,8 @@ $.widget( "ui.dialog", { return; } + var jqMinor = $.fn.jquery.substring( 0, 4 ); + // We use a delay in case the overlay is created from an // event that we're going to be cancelling (#2804) var isOpening = true; @@ -874,6 +877,15 @@ $.widget( "ui.dialog", { if ( !instance._allowInteraction( event ) ) { event.preventDefault(); instance._focusTabbable(); + + // Support: jQuery >=3.4 <3.6 only + // Focus re-triggering in jQuery 3.4/3.5 makes the original element + // have its focus event propagated last, breaking the re-targeting. + // Trigger focus in a delay in addition if needed to avoid the issue + // See https://github.com/jquery/jquery/issues/4382 + if ( jqMinor === "3.4." || jqMinor === "3.5." ) { + instance._delay( instance._restoreTabbableFocus ); + } } }.bind( this ) ); } |