mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-06 05:43:47 +08:00
removing word joiner and brought back special german characters. fixed #802
This commit is contained in:
parent
0735d5bfdd
commit
95f7968e51
1 changed files with 2 additions and 1 deletions
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue