Media modal: do not attempt to focus the hidden file input field added by Plupload when tabbing. Props afercia, fixes #30392.
git-svn-id: https://develop.svn.wordpress.org/trunk@31117 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
b3322a9604
commit
47cfdb5ced
@ -3767,7 +3767,8 @@
|
||||
return;
|
||||
}
|
||||
|
||||
tabbables = this.$( ':tabbable' );
|
||||
// Skip the file input added by Plupload.
|
||||
tabbables = this.$( ':tabbable' ).not( '.moxie-shim input[type="file"]' );
|
||||
|
||||
// Keep tab focus within media modal while it's open
|
||||
if ( tabbables.last()[0] === event.target && ! event.shiftKey ) {
|
||||
|
Loading…
Reference in New Issue
Block a user