From eb2510e3fbb3c13a3ab39c28b6f6c74abeda56bc Mon Sep 17 00:00:00 2001 From: Jack Date: Tue, 8 Sep 2020 01:34:30 +0100 Subject: [PATCH] not showing _ in funbox name --- public/js/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/script.js b/public/js/script.js index 0b7c69f2a..550296dcf 100644 --- a/public/js/script.js +++ b/public/js/script.js @@ -2133,7 +2133,7 @@ function showResult(difficultyFailed = false) { // testType += "
read_ahead"; // } if (activeFunBox !== "none") { - testType += "
" + activeFunBox; + testType += "
" + activeFunBox.replace(/_/g, " "); } if (config.difficulty == "expert") { testType += "
expert";