Editor: Add missing label to new-post-slug input on Classic Editor.

Previously, the input for changing the permalink of a post does not have a label in the Classic Editor. This change adds a visually hidden label. It also makes sure browsers do not run spellcheck on the input field.

Props sabernhardt.
Fixes #53725.


git-svn-id: https://develop.svn.wordpress.org/trunk@52225 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jb Audras 2021-11-19 22:54:34 +00:00
parent afc50ca20d
commit 194e456aa4

View File

@ -972,7 +972,7 @@ jQuery( function($) {
* @return {void}
*/
function editPermalink() {
var i, slug_value,
var i, slug_value, slug_label,
$el, revert_e,
c = 0,
real_slug = $('#post_name'),
@ -1048,8 +1048,9 @@ jQuery( function($) {
c++;
}
slug_value = ( c > full.length / 4 ) ? '' : full;
slug_label = __( 'URL Slug' );
$el.html( '<input type="text" id="new-post-slug" value="' + slug_value + '" autocomplete="off" />' ).children( 'input' ).on( 'keydown', function( e ) {
$el.html( '<label for="new-post-slug" class="screen-reader-text">' + slug_label + '</label><input type="text" id="new-post-slug" value="' + slug_value + '" autocomplete="off" spellcheck="false" />' ).children( 'input' ).on( 'keydown', function( e ) {
var key = e.which;
// On [Enter], just save the new slug, don't save the post.
if ( 13 === key ) {