diff --git a/quiz.js b/quiz.js index c344172cd799e83e7d4b3ab6a9166bcbde66dbd8..14dac3d15ba55bfa52392cf794ba5056da070e7c 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.5 2024/01/12 10:23:21 oj14ozun Exp oj14ozun $"; +const version = "$Id: quiz.js,v 1.6 2024/01/12 10:24:23 oj14ozun Exp oj14ozun $"; "use strict"; @@ -52,8 +52,8 @@ function update_stats(q) { // update stats 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\">f</abbr> = " + data.wrong + + ", <abbr title=\"Wie oft richtig\">r</abbr> = " + data.right + + ", <abbr title=\"Wie oft falsch\">f</abbr> = " + data.wrong + "; <abbr title=\"Anzahl an Fragen insgesammt\">#</abbr> = " + questions.length; }