From badf45c4d07cf22c6b08c22dc08b0b91b8f45ffe Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Tue, 28 Nov 2023 18:52:36 -1000 Subject: [PATCH] view_mail.js: make the Forward button appear. Needs a lot of work. Currently it is just a reply with no addressees filled in. It needs to not quote the message, and carry over the attachments. --- webcit-ng/static/js/view_mail.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/webcit-ng/static/js/view_mail.js b/webcit-ng/static/js/view_mail.js index 0e37bd0d9..3118a6b7a 100644 --- a/webcit-ng/static/js/view_mail.js +++ b/webcit-ng/static/js/view_mail.js @@ -159,6 +159,12 @@ function mail_render_one(msgnum, msg, target_div, include_controls) { + "" + " " + _("ReplyAll") + + "" + + + "" // Forward (server handles this) + + "" + + " " + + _("Forward") + ""; if (can_delete_messages) { -- 2.30.2