diff options
author | LarsVomMars | 2021-02-20 19:16:30 +0100 |
---|---|---|
committer | LarsVomMars | 2021-02-20 19:16:33 +0100 |
commit | 69b91c7886976bc7fed4d5bd30739b3cbef7a54b (patch) | |
tree | 4bf46e1dfe45299a9aad399df09712f3499ccb09 /profile/public | |
parent | 72b919549a45f94b694a7d581645d25e9fff51a1 (diff) |
Added image upload feedback
Diffstat (limited to 'profile/public')
-rw-r--r-- | profile/public/script.js | 3 |
1 files changed, 2 insertions, 1 deletions
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(); }); |