Fix tabbing out of the title field on Media -> Edit Media screen, fixes #27750
git-svn-id: https://develop.svn.wordpress.org/trunk@28069 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
824830ca01
commit
416b8e348f
@ -486,15 +486,18 @@ jQuery(document).ready( function($) {
|
||||
|
||||
// This code is meant to allow tabbing from Title to Post content.
|
||||
$('#title').on( 'keydown.editor-focus', function( event ) {
|
||||
var editor;
|
||||
var editor, textarea;
|
||||
|
||||
if ( event.keyCode === 9 && ! event.ctrlKey && ! event.altKey && ! event.shiftKey ) {
|
||||
editor = typeof tinymce != 'undefined' && tinymce.get('content');
|
||||
$textarea = $('#content');
|
||||
|
||||
if ( editor && ! editor.isHidden() ) {
|
||||
editor.focus();
|
||||
} else if ( $textarea.length ) {
|
||||
$textarea.focus();
|
||||
} else {
|
||||
$('#content').focus();
|
||||
return;
|
||||
}
|
||||
|
||||
event.preventDefault();
|
||||
|
Loading…
Reference in New Issue
Block a user