Customizer: Trim whitespace from custom link URLs.
This complements a similar fix for the Menus screen in [45655]. Props donmhico, audrasjb. Fixes #47888. See #47723. git-svn-id: https://develop.svn.wordpress.org/trunk@45869 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
2fb748bd1c
commit
fb189a6d5c
@ -944,7 +944,7 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
addCustomLink : function( processMethod ) {
|
addCustomLink : function( processMethod ) {
|
||||||
var url = $('#custom-menu-item-url').val(),
|
var url = $('#custom-menu-item-url').val().trim(),
|
||||||
label = $('#custom-menu-item-name').val();
|
label = $('#custom-menu-item-name').val();
|
||||||
|
|
||||||
processMethod = processMethod || api.addMenuItemToBottom;
|
processMethod = processMethod || api.addMenuItemToBottom;
|
||||||
|
@ -544,6 +544,7 @@
|
|||||||
var menuItem,
|
var menuItem,
|
||||||
itemName = $( '#custom-menu-item-name' ),
|
itemName = $( '#custom-menu-item-name' ),
|
||||||
itemUrl = $( '#custom-menu-item-url' ),
|
itemUrl = $( '#custom-menu-item-url' ),
|
||||||
|
url = itemUrl.val().trim(),
|
||||||
urlRegex;
|
urlRegex;
|
||||||
|
|
||||||
if ( ! this.currentMenuControl ) {
|
if ( ! this.currentMenuControl ) {
|
||||||
@ -567,14 +568,14 @@
|
|||||||
if ( '' === itemName.val() ) {
|
if ( '' === itemName.val() ) {
|
||||||
itemName.addClass( 'invalid' );
|
itemName.addClass( 'invalid' );
|
||||||
return;
|
return;
|
||||||
} else if ( ! urlRegex.test( itemUrl.val() ) ) {
|
} else if ( ! urlRegex.test( url ) ) {
|
||||||
itemUrl.addClass( 'invalid' );
|
itemUrl.addClass( 'invalid' );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
menuItem = {
|
menuItem = {
|
||||||
'title': itemName.val(),
|
'title': itemName.val(),
|
||||||
'url': itemUrl.val(),
|
'url': url,
|
||||||
'type': 'custom',
|
'type': 'custom',
|
||||||
'type_label': api.Menus.data.l10n.custom_label,
|
'type_label': api.Menus.data.l10n.custom_label,
|
||||||
'object': 'custom'
|
'object': 'custom'
|
||||||
|
Loading…
Reference in New Issue
Block a user