From b4e41f006b26fbb0d372eca5b0636a886dbc571f Mon Sep 17 00:00:00 2001 From: thomascube Date: Tue, 24 Jan 2012 07:35:33 +0000 Subject: Show hidden compose header fileds if non-empty (#1488320) --- skins/larry/ui.js | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'skins') diff --git a/skins/larry/ui.js b/skins/larry/ui.js index 36159eaa2..d07ee6c59 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -87,6 +87,13 @@ function rcube_mail_ui() rcmail.addEventListener('add-recipient', function(p){ show_header_row(p.field, true); }); layout_composeview(); + // Show input elements with non-empty value + var field, fields = ['cc', 'bcc', 'replyto', 'followupto']; + for (var f=0; f < fields.length; f++) { + if ((field = $('#_'+fields[f])) && field.length && field.val() != '') + show_header_row(fields[f], true); + } + $('#composeoptionstoggle').parent().click(function(){ $('#composeoptionstoggle').toggleClass('enabled'); $('#composeoptions').toggle(); -- cgit v1.2.3