Elastic: Fix hidden list widget on mobile/tablet when selecting folder while search menu is open (#7120)

bnet/additions
Aleksander Machniak 5 years ago
parent 880452f84e
commit ca870f034e

@ -12,6 +12,7 @@ CHANGELOG Roundcube Webmail
- Installer: Fix so SQLite DSN with a relative path to the database file works in Installer
- Elastic: Fix contrast of warning toasts (#7058)
- Elastic: Simple search in pretty selects (#7072)
- Elastic: Fix hidden list widget on mobile/tablet when selecting folder while search menu is open (#7120)
- Fix so type attribute on script tags is not used on HTML5 pages (#6975)
- Fix unread count after purge on a folder that is not currently selected (#7051)
- Fix bug where Enter key didn't work on messages list in "List" layout (#7052)

@ -2031,7 +2031,7 @@ function rcube_elastic_ui()
options_button.on('click', function(e) {
var id = $(this).data('target'),
options = $('#' + id),
open = options.is(':visible');
open = $(bar).is('.open');
if (options.length) {
if (!open) {
@ -2049,7 +2049,7 @@ function rcube_elastic_ui()
$(bar).toggleClass('open');
$('button.search', options).off('click.search').on('click.search', function() {
options_button.trigger('click');
options_button.click();
update_func();
});
}

Loading…
Cancel
Save