mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-12 23:20:25 +08:00
Merge branch 'master' of https://github.com/Miodec/monkeytype
This commit is contained in:
commit
53427e6664
1 changed files with 8 additions and 0 deletions
|
@ -351,6 +351,14 @@ function handleChar(char, charIndex) {
|
|||
return;
|
||||
}
|
||||
|
||||
if (char === "…") {
|
||||
for (let i = 0; i < 3; i++) {
|
||||
handleChar(".", charIndex + i);
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if (char === "\n" && Config.funbox === "58008") {
|
||||
char = " ";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue