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 ) {
|
||||
var url = $('#custom-menu-item-url').val(),
|
||||
var url = $('#custom-menu-item-url').val().trim(),
|
||||
label = $('#custom-menu-item-name').val();
|
||||
|
||||
processMethod = processMethod || api.addMenuItemToBottom;
|
||||
|
@ -544,6 +544,7 @@
|
||||
var menuItem,
|
||||
itemName = $( '#custom-menu-item-name' ),
|
||||
itemUrl = $( '#custom-menu-item-url' ),
|
||||
url = itemUrl.val().trim(),
|
||||
urlRegex;
|
||||
|
||||
if ( ! this.currentMenuControl ) {
|
||||
@ -567,14 +568,14 @@
|
||||
if ( '' === itemName.val() ) {
|
||||
itemName.addClass( 'invalid' );
|
||||
return;
|
||||
} else if ( ! urlRegex.test( itemUrl.val() ) ) {
|
||||
} else if ( ! urlRegex.test( url ) ) {
|
||||
itemUrl.addClass( 'invalid' );
|
||||
return;
|
||||
}
|
||||
|
||||
menuItem = {
|
||||
'title': itemName.val(),
|
||||
'url': itemUrl.val(),
|
||||
'url': url,
|
||||
'type': 'custom',
|
||||
'type_label': api.Menus.data.l10n.custom_label,
|
||||
'object': 'custom'
|
||||
|
Loading…
Reference in New Issue
Block a user