diff options
-rw-r--r-- | poll/index.js | 2 | ||||
-rw-r--r-- | profile/public/script.js | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/poll/index.js b/poll/index.js index 0ff20ba..95e6c41 100644 --- a/poll/index.js +++ b/poll/index.js @@ -75,8 +75,6 @@ app.put("/api/answer/:type", checkUser, async (req, res) => { return await answer(req, res, "UPDATE ranking_answers SET answer_id = ? WHERE question_id = ? AND user_id = ?"); }); -// TODO: Puzzle bar - async function answer(req, res, qu) { const type = req.params.type; const types = ["pupil", "teacher"]; diff --git a/profile/public/script.js b/profile/public/script.js index 767b2f2..cd22dda 100644 --- a/profile/public/script.js +++ b/profile/public/script.js @@ -38,7 +38,7 @@ function appendQuestions(question) { const img = document.createElement("img"); img.src = "uploads/" + question.answer; img.alt = "Image"; - div.appendChild(img); // TODO: Max size + div.appendChild(img); } const field = document.createElement("input"); @@ -104,6 +104,7 @@ saveBtn.addEventListener("click", (e) => { } else { popup.style.display = "none"; cropper.destroy(); + alert("Okidoki, danke!"); document.querySelectorAll("img").forEach((elem) => { if (elem.src.startsWith("http")) elem.src += "#" + new Date().getTime(); }); |