mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-05 21:33:40 +08:00
Fixed
This commit is contained in:
parent
fdf6aa3b0b
commit
25695b7103
2 changed files with 1 additions and 4 deletions
|
@ -103,9 +103,6 @@ export function update(expectedStepEnd) {
|
|||
if ($("#paceCaret").hasClass("hidden")) {
|
||||
$("#paceCaret").removeClass("hidden");
|
||||
}
|
||||
if ($("#paceCaret").hasClass("off")) {
|
||||
return;
|
||||
}
|
||||
try {
|
||||
settings.currentLetterIndex++;
|
||||
if (
|
||||
|
|
|
@ -342,7 +342,7 @@ export function startTest() {
|
|||
}
|
||||
|
||||
try {
|
||||
if (Config.paceCaret !== "off") PaceCaret.start();
|
||||
if (Config.paceCaret !== "off" || isPaceRepeat) PaceCaret.start();
|
||||
} catch (e) {}
|
||||
//use a recursive self-adjusting timer to avoid time drift
|
||||
TestStats.setStart(performance.now());
|
||||
|
|
Loading…
Reference in a new issue