diff options
author | LarsVomMars | 2021-01-27 15:19:37 +0100 |
---|---|---|
committer | LarsVomMars | 2021-01-27 15:19:43 +0100 |
commit | 637161b0a4a18dab689c31ec32896a0884400a66 (patch) | |
tree | 0b19702be60147294337bcf5fcce984fa85672a7 /poll/public | |
parent | 183741dc09d7b50ff49f001703ae1f4be8553aa2 (diff) |
Minor fixibus
Diffstat (limited to 'poll/public')
-rw-r--r-- | poll/public/script.js | 2 |
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)); |