pixelandtonic / garnishjs

UI toolkit by Pixel & Tonic
MIT License
39 stars 5 forks source link

Correct HTML entity for nonbreaking space #1

Closed AugustMiller closed 7 years ago

AugustMiller commented 7 years ago

From https://github.com/pixelandtonic/garnishjs/blob/develop/src/NiceText.js#L228:

val = val.replace(/[\n\r]$/g, '<br/>&nbps;');

…should be…

val = val.replace(/[\n\r]$/g, '<br/>&nbsp;');

Issuing a PR, now!

✌️