mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-11 06:05:16 +08:00
showing decimals on acocunt page
This commit is contained in:
parent
0a452ba2f9
commit
2f48de8759
1 changed files with 3 additions and 3 deletions
|
@ -651,9 +651,9 @@ function loadMoreLines() {
|
|||
|
||||
$(".pageAccount .history table tbody").append(`
|
||||
<tr>
|
||||
<td>${Math.round(result.wpm)}</td>
|
||||
<td>${Math.round(raw)}</td>
|
||||
<td>${Math.round(result.acc)}%</td>
|
||||
<td>${result.wpm}</td>
|
||||
<td>${raw}</td>
|
||||
<td>${result.acc}%</td>
|
||||
<td>${result.correctChars}</td>
|
||||
<td>${result.incorrectChars}</td>
|
||||
<td>${result.mode} ${result.mode2}${withpunc}</td>
|
||||
|
|
Loading…
Reference in a new issue