X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit-ng%2Fstatic%2Fjs%2Fview_mail.js;h=98eba01c79855435da082067392cfaa5a02a2d6a;hb=cb0f6cdf8e28afc92e7fcefeb8ce750abea96c71;hp=5179973e809b15cfb71e7add50fb1351d6071f2c;hpb=b36df46899aa8fe9f4c1c2c5aacec321616a0f66;p=citadel.git diff --git a/webcit-ng/static/js/view_mail.js b/webcit-ng/static/js/view_mail.js index 5179973e8..98eba01c7 100644 --- a/webcit-ng/static/js/view_mail.js +++ b/webcit-ng/static/js/view_mail.js @@ -153,19 +153,19 @@ function mail_render_one(msgnum, msg, target_div, include_controls) { + "" // begin buttons on right side + "" // Reply - + `` + + `` + " " + _("Reply") + "" + "" // Reply-All - + `` + + `` + " " + _("ReplyAll") + "" + "" // Forward FIXME - + "" + + `` + " " + _("Forward") + ""; @@ -471,16 +471,17 @@ function recipient_array_to_string(recps_arr) { // Compose a new mail message (called by the Reply button here, or by the dispatcher in views.js) // -// is_quoted true or false depending on whether the user selected "reply quoted" (is this appropriate for mail?) // references list of references, be sure to use this in a reply // quoted_msgnum if a reply, the msgid of the most recent message in the chain, the one to which we are replying +// (set to 0 if this is not a reply) // m_to an ARRAY of zero or more recipients to pre-insert into the To: field // m_cc an ARRAY of zero or more recipients to pre-insert into the Cc: field // m_subject a string to pre-insert into the Subject: field // -function mail_compose(is_quoted, references, quoted_msgnum, m_to, m_cc, m_subject) { +function mail_compose(references, quoted_msgnum, m_to, m_cc, m_subject) { let is_reply = 0; + let is_quoted = (quoted_msgnum > 0) ? true : false ; // m_to will be an array of zero or more recipients for the To: field. Convert it to a string. m_to_str = recipient_array_to_string(m_to);