Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/skins
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2019-10-23 19:53:40 +0300
committerAleksander Machniak <alec@alec.pl>2019-11-18 17:30:22 +0300
commit727f8f04d820c1dcfb2b88d455d4f3f944591d05 (patch)
treea12864d0edadf589ec7e4178057621437030cb26 /skins
parent52c755207d5d0b9c6b63ac38c2be3fefed87df8c (diff)
Elastic: Fix regression where Encrypt button wasn't displayed in mail compose toolbar (#6982)
Also fix Reply-All button handling
Diffstat (limited to 'skins')
-rw-r--r--skins/elastic/ui.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/skins/elastic/ui.js b/skins/elastic/ui.js
index b20c33915..16725aec7 100644
--- a/skins/elastic/ui.js
+++ b/skins/elastic/ui.js
@@ -1521,14 +1521,14 @@ function rcube_elastic_ui()
case 'reply-list':
if (rcmail.env.reply_all_mode == 1) {
var label = rcmail.gettext(args.status ? 'replylist' : 'replyall');
- $('a.button.reply-all').attr('title', label).find('.inner').text(label);
+ $('.toolbar a.reply-all').attr('title', label).find('.inner').text(label);
}
break;
case 'compose-encrypted':
// show the toolbar button for Mailvelope
if (args.status) {
- $('a.button.encrypt:not(.icon)').parent().show();
+ $('.toolbar a.encrypt').parent().show();
}
break;