Fix: nicer fix
This commit is contained in:
parent
233f3e88c2
commit
cc99fdfe0c
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ document.addEventListener("alpine:init", () => {
|
||||||
}
|
}
|
||||||
case 3: {
|
case 3: {
|
||||||
this.time =
|
this.time =
|
||||||
parseInt(((new Date().getTime() - this.startedAt) / 1000).toFixed(2) * 1000);
|
Math.floor(((new Date().getTime() - this.startedAt) / 1000).toFixed(2) * 1000);
|
||||||
this.startedAt = null;
|
this.startedAt = null;
|
||||||
sayNumber(this.time / 10);
|
sayNumber(this.time / 10);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue