removed current langauge config from results page when completeing a custom test

This commit is contained in:
unknown 2020-05-20 16:28:26 +01:00
parent 54126a4f96
commit 10b86a40af

View file

@ -508,7 +508,9 @@ function showResult() {
} else if (config.mode == "words") {
infoText += " " + config.words
}
infoText += "<br>" + config.language.replace('_', ' ') ;
if(config.mode != "custom"){
infoText += "<br>" + config.language.replace('_', ' ');
}
if (config.punctuation) {
infoText += "<br>with punctuation"
}