summaryrefslogtreecommitdiff
path: root/src/jwebmail/static
diff options
context:
space:
mode:
Diffstat (limited to 'src/jwebmail/static')
-rw-r--r--src/jwebmail/static/src/dh-move-submit.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/jwebmail/static/src/dh-move-submit.js b/src/jwebmail/static/src/dh-move-submit.js
new file mode 100644
index 0000000..cf16f9c
--- /dev/null
+++ b/src/jwebmail/static/src/dh-move-submit.js
@@ -0,0 +1,19 @@
+function add_mail_ids(form_id) {
+ const chkbox = document.getElementsByClassName("jwm-mail-checkbox");
+ const move_form = document.getElementById(form_id);
+
+ for (const m of chkbox) {
+ if (m.checked) {
+ let inp = document.createElement("input");
+ inp.setAttribute("type", "hidden");
+ inp.setAttribute("name", "mail");
+ inp.setAttribute("value", m.name);
+ move_form.append(inp);
+ }
+ }
+}
+
+document.addEventListener("DOMContentLoaded", function() {
+ document.getElementById("move").addEventListener("click", () => add_mail_ids("move-mail"));
+ document.getElementById("remove").addEventListener("click", () => add_mail_ids("remove-mail"));
+});