Elastic: Fix folders list scrolling on touch devices (#6706)

pull/6711/head
Aleksander Machniak 5 years ago
parent a35699637d
commit 4d1b3e263a

@ -8,6 +8,7 @@ CHANGELOG Roundcube Webmail
- Elastic: Changed "Move to..." icon (#6637)
- Elastic: Add hide/show for advanced preferences (#6632)
- Elastic: Fix bug where toolbar disappears on attachment menu use in Chrome (#6677)
- Elastic: Fix folders list scrolling on touch devices (#6706)
- Fix TinyMCE download location (#6694)
- Fix so "Open in new window" consistently displays "external window" interface (#6659)
- Fix bug where next row wasn't selected after deleting a collapsed thread (#6655)

@ -499,7 +499,7 @@ function rcube_elastic_ui()
function init()
{
// Additional functionality on list widgets
$('table[data-list]').each(function() {
$('[data-list]').filter('ul,table').each(function() {
var button,
table = $(this),
list = table.data('list');

Loading…
Cancel
Save