mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-10-27 17:27:32 +08:00
Merge pull request #1026 from matthope1/read-ahead-hard
added read ahead hard funbox
This commit is contained in:
commit
0d611c2799
2 changed files with 10 additions and 1 deletions
|
|
@ -355,7 +355,11 @@ async function activateFunbox(funbox, mode) {
|
|||
restartTest();
|
||||
}
|
||||
|
||||
if (funbox === "read_ahead" || funbox === "read_ahead_easy") {
|
||||
if (
|
||||
funbox === "read_ahead" ||
|
||||
funbox === "read_ahead_easy" ||
|
||||
funbox === "read_ahead_hard"
|
||||
) {
|
||||
setHighlightMode("letter", true);
|
||||
restartTest();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -89,6 +89,11 @@
|
|||
"type": "style",
|
||||
"info": "Current and the next two words are invisible!"
|
||||
},
|
||||
{
|
||||
"name": "read_ahead_hard",
|
||||
"type": "style",
|
||||
"info": "Current and the next two words are invisible."
|
||||
},
|
||||
{
|
||||
"name": "memory",
|
||||
"type": "script",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue