Fix so adding CC/BCC recipients from the sidebar unhides compose form fields in Classic skin (#1490472)

pull/315/head
Aleksander Machniak 9 years ago
parent 8ef86f5253
commit 52b75f2506

@ -31,6 +31,7 @@ CHANGELOG Roundcube Webmail
- Fix so input field (e.g. search box) does not loose focus on list load (#1490455)
- Fix so css of one html part does not apply to other text parts on message display (#1490505)
- Fix handling of plus character in mailto: links (#1490510)
- Fix so adding CC/BCC recipients from the sidebar unhides compose form fields in Classic skin (#1490472)
RELEASE 1.1.2
-------------

@ -3595,7 +3595,7 @@ function rcube_webmail()
var oldval = input.val(), rx = new RegExp(RegExp.escape(delim) + '\\s*$');
if (oldval && !rx.test(oldval))
oldval += delim + ' ';
input.val(oldval + recipients.join(delim + ' ') + delim + ' ');
input.val(oldval + recipients.join(delim + ' ') + delim + ' ').change();
this.triggerEvent('add-recipient', { field:field, recipients:recipients });
}

@ -174,7 +174,6 @@ function rcube_mail_ui()
}
else if (rcmail.env.action == 'compose') {
rcmail.addEventListener('aftersend-attachment', show_uploadform)
.addEventListener('add-recipient', function(p){ show_header_row(p.field, true); })
.addEventListener('aftertoggle-editor', function(e){
window.setTimeout(function(){ layout_composeview() }, 200);
if (e && e.mode)

Loading…
Cancel
Save