Editor: link modal: use link as fallback for text

If there is no link text provided, use the link as the text. This is better than silently failing.

Props bcole808.
Fixes #32323.


git-svn-id: https://develop.svn.wordpress.org/trunk@32705 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ella Iseulde Van Dorpe 2015-06-07 21:10:17 +00:00
parent 9eafba9d15
commit ea5ba64400

View File

@ -354,7 +354,7 @@ var wpLink;
}
link = getLink();
text = inputs.text.val();
text = inputs.text.val() || attrs.href;
if ( link ) {
if ( text ) {