removing word joiner and brought back special german characters. fixed #802

This commit is contained in:
Miodec 2021-01-06 21:48:18 +00:00
parent 0735d5bfdd
commit 95f7968e51

View file

@ -3844,7 +3844,8 @@ $("#customTextPopup .button").click(() => {
if ($("#customTextPopup .typographyCheck input").prop("checked")) {
text = Misc.cleanTypographySymbols(text);
}
text = Misc.remove_non_ascii(text);
// text = Misc.remove_non_ascii(text);
text = text.replace(/[\u2060]/g, "");
text = text.split(" ");
customText = text;
customTextIsRandom = $("#customTextPopup .check input").prop("checked");