From 95f7968e510430de9dbafff934974956ccd7109b Mon Sep 17 00:00:00 2001 From: Miodec Date: Wed, 6 Jan 2021 21:48:18 +0000 Subject: [PATCH] removing word joiner and brought back special german characters. fixed #802 --- src/js/script.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/js/script.js b/src/js/script.js index ebe5cf1a3..2bc091c5d 100644 --- a/src/js/script.js +++ b/src/js/script.js @@ -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");