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-10-23 19:53:40 +0300
commit12967485a39395ac2e497fcb97a5ed74e0400ece (patch)
treed154529369e5830e20aa5cb7d06aef419c8184dd /skins
parentad5a22b9c1b6d119138d565a98f37c5cd68939a6 (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;