diff --git a/drakul/raids/templates/raids/raid_detail.html b/drakul/raids/templates/raids/raid_detail.html index fa6a008..e8397d3 100644 --- a/drakul/raids/templates/raids/raid_detail.html +++ b/drakul/raids/templates/raids/raid_detail.html @@ -189,6 +189,10 @@ event.interaction.start({name: "drag"}, event.interactable, clone); }); + document.querySelectorAll(".response-character-alert").forEach(function (element) { + element.style.cursor = "move"; + }); + interact(".response-container").dropzone({ accept: ".response-character-alert", ondrop(event) { @@ -210,6 +214,7 @@ mode: "same-origin", body: form, }).then(function (response) { + document.body.style.cursor = "wait"; location.reload(); }); }