diff --git a/quiz.js b/quiz.js index b97e42464b4561fa5df433561581f8a6a7b795f4..c344172cd799e83e7d4b3ab6a9166bcbde66dbd8 100644 --- a/quiz.js +++ b/quiz.js @@ -1,7 +1,7 @@ // This horrible file is distributed under the CC0 license. Consult // ./LICENSE for more details. -const version = "$Id: quiz.js,v 1.4 2024/01/12 10:17:23 oj14ozun Exp oj14ozun $"; +const version = "$Id: quiz.js,v 1.5 2024/01/12 10:23:21 oj14ozun Exp oj14ozun $"; "use strict"; @@ -53,7 +53,7 @@ function update_stats(q) { stats.innerHTML = "<abbr title=\"Wie oft gesehen\">n</abbr> = " + data.count + ", <abbr title=\"Wie oft Richtig\">r</abbr> = " + data.right - + ", <abbr title=\"Wie oft Falsch\">w</abbr> = " + data.wrong + + ", <abbr title=\"Wie oft Falsch\">f</abbr> = " + data.wrong + "; <abbr title=\"Anzahl an Fragen insgesammt\">#</abbr> = " + questions.length; }