aboutsummaryrefslogtreecommitdiff
path: root/profile/public
diff options
context:
space:
mode:
authorLarsVomMars2021-02-20 19:16:30 +0100
committerLarsVomMars2021-02-20 19:16:33 +0100
commit69b91c7886976bc7fed4d5bd30739b3cbef7a54b (patch)
tree4bf46e1dfe45299a9aad399df09712f3499ccb09 /profile/public
parent72b919549a45f94b694a7d581645d25e9fff51a1 (diff)
Added image upload feedback
Diffstat (limited to 'profile/public')
-rw-r--r--profile/public/script.js3
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();
});