aboutsummaryrefslogtreecommitdiff
path: root/quotes/public/script.js
diff options
context:
space:
mode:
authorLarsVomMars2020-10-03 12:59:22 +0200
committerLarsVomMars2020-10-03 12:59:30 +0200
commit069e4d5a3bb03d4fcba46ae40657eb55b8581c53 (patch)
tree4428dddd1ed5b05d356874d161e3d7ba5cac52dd /quotes/public/script.js
parent0fd8f61362403934550b360cbd65f1b41d66c870 (diff)
Delte owner
Diffstat (limited to 'quotes/public/script.js')
-rw-r--r--quotes/public/script.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/quotes/public/script.js b/quotes/public/script.js
index 20587fe..8132019 100644
--- a/quotes/public/script.js
+++ b/quotes/public/script.js
@@ -21,10 +21,11 @@ function appendQuote(response) {
"beforeend",
`<li>${elem["name"]} ${elem["middlename"] ? elem["middlename"] : " "}${elem["surname"]}: ${
elem["quote"]
- } <span data-id="${elem["id"]}">[Löschen]</span></li>`,
+ }${elem["owner"] ? '<span data-id="' + elem["id"] + '">[Löschen]</span></li>' : ""}`,
);
- document.querySelector(`li span[data-id="${elem["id"]}"]`).addEventListener("click", (event) => {
+ const span = document.querySelector(`li span[data-id="${elem["id"]}"]`);
+ if (span) span.addEventListener("click", (event) => {
fetch("api/delete/" + event.target.getAttribute("data-id"), { method: "DELETE" })
.then((response) => response.text())
.then((response) => {