mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2026-01-09 00:45:32 +08:00
not showing language when some funbox are active. fixed #291
This commit is contained in:
parent
95c56f207a
commit
5c954c91a0
1 changed files with 5 additions and 1 deletions
|
|
@ -1834,7 +1834,11 @@ function showResult(difficultyFailed = false) {
|
|||
} else if (config.mode == "words") {
|
||||
testType += " " + config.words;
|
||||
}
|
||||
if (config.mode != "custom") {
|
||||
if (
|
||||
config.mode != "custom" &&
|
||||
activeFunBox !== "gibberish" &&
|
||||
activeFunBox !== "58008"
|
||||
) {
|
||||
testType += "<br>" + config.language.replace(/_/g, " ");
|
||||
}
|
||||
if (config.punctuation) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue