aboutsummaryrefslogtreecommitdiff
path: root/poll/public
diff options
context:
space:
mode:
authorLarsVomMars2021-01-27 15:19:37 +0100
committerLarsVomMars2021-01-27 15:19:43 +0100
commit637161b0a4a18dab689c31ec32896a0884400a66 (patch)
tree0b19702be60147294337bcf5fcce984fa85672a7 /poll/public
parent183741dc09d7b50ff49f001703ae1f4be8553aa2 (diff)
Minor fixibus
Diffstat (limited to 'poll/public')
-rw-r--r--poll/public/script.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/poll/public/script.js b/poll/public/script.js
index 18469c3..14103bd 100644
--- a/poll/public/script.js
+++ b/poll/public/script.js
@@ -17,7 +17,7 @@ dropdown.insertAdjacentHTML(
"beforeend",
'<option value="" selected disabled>' + (type === "teacher" ? "Lehrer" : "Schüler") + "/in auswählen...</option>",
);
-document.querySelector("legend").innerText = type === "teacher" ? "Lehrer-Ranking" : "Schüler-Ranking";
+document.querySelector("title").textContent = document.querySelector("legend").innerText = type === "teacher" ? "Lehrer-Ranking" : "Schüler-Ranking";
document.querySelector("p").innerText = "Welche/r " + (type === "teacher" ? "Lehrer/in" : "Schüler/in") + "...";
skip.addEventListener("click", () => getNext(parseInt(qid) + 1));