From b6e707f912d40d8a64ee16364a4d5f647ceddb95 Mon Sep 17 00:00:00 2001 From: Philip Kaludercic <philip.kaludercic@fau.de> Date: Fri, 12 Jan 2024 10:24:46 +0000 Subject: [PATCH] Fix capitalisation in statistics --- quiz.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/quiz.js b/quiz.js index c344172..14dac3d 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; } -- GitLab