diff options
author | Marvin Borner | 2020-10-10 13:51:42 +0200 |
---|---|---|
committer | Marvin Borner | 2020-10-10 13:51:42 +0200 |
commit | 167600b52eb03801bb7051a09dcb0e4f159cfb2a (patch) | |
tree | 389ddfa3351ec2a0daf221aeb6c37c97a48465b3 | |
parent | c1dac67d7655a5e82e6f91803a8caa5eff59acb8 (diff) |
Added note if finished
-rw-r--r-- | poll/public/script.js | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/poll/public/script.js b/poll/public/script.js index 8c56894..09f8c93 100644 --- a/poll/public/script.js +++ b/poll/public/script.js @@ -29,7 +29,19 @@ fetch("/auth/api/list" + (type == "teacher" ? "?class=teacher" : "")) .then((response) => appendOption(response)); fetch("/poll/api/get?type=" + type) - .then((response) => response.json()) + .then(async (response) => { + let json; + try { + return await response.json(); + } catch (e) { + document.querySelector("p").innerText = ""; + question_label.innerText = "Du hast bereits alle Fragen beantwortet."; + document.querySelectorAll("label")[1].innerText = "Danke!"; + document.querySelector("select").style.display = "none"; + document.querySelector("button").style.display = "none"; + throw "Oh nein, alle beantwortet!"; // :^) + } + }) .then((response) => { question_label.innerText = response["question"]; question_input.setAttribute("value", response["id"]); |