From: Art Cancro Date: Wed, 29 Nov 2023 04:31:41 +0000 (-1000) Subject: "make cc/bcc visible" now makes BOTH visible. X-Git-Tag: v997~85 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=dea3d69bde3ec180cee5ad09fc17a43057b9477a "make cc/bcc visible" now makes BOTH visible. Somewhere along the line it lost CC and only showed BCC. --- diff --git a/webcit-ng/static/js/view_mail.js b/webcit-ng/static/js/view_mail.js index cb0e3814a..0e37bd0d9 100644 --- a/webcit-ng/static/js/view_mail.js +++ b/webcit-ng/static/js/view_mail.js @@ -553,6 +553,8 @@ function mail_compose(is_quoted, references, quoted_msgnum, m_to, m_cc, m_subjec // It is also called automatically during a Reply when CC is pre-populated. function make_cc_bcc_visible() { document.getElementById("ctdl-cc-bcc-buttons").style.display = "none"; + document.getElementById("ctdl-compose-cc-label").style.display = "block"; + document.getElementById("ctdl-compose-cc-field").style.display = "block"; document.getElementById("ctdl-compose-bcc-label").style.display = "block"; document.getElementById("ctdl-compose-bcc-field").style.display = "block"; }