Media Grid: when the modal is open, don't respond to arrow keys when `<textarea>` has focus.
Props ryelle. Fixes #29725. Built from https://develop.svn.wordpress.org/trunk@29777 git-svn-id: http://core.svn.wordpress.org/trunk@29549 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7a55ab9164
commit
668e758a78
|
@ -580,7 +580,7 @@
|
|||
* Respond to the keyboard events: right arrow, left arrow, escape.
|
||||
*/
|
||||
keyEvent: function( event ) {
|
||||
if ( 'INPUT' === event.target.tagName && ! ( event.target.readOnly || event.target.disabled ) ) {
|
||||
if ( ( 'INPUT' === event.target.nodeName || 'TEXTAREA' === event.target.nodeName ) && ! ( event.target.readOnly || event.target.disabled ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue