From 4d1b3e263aba3fc7adae877309e9e929de363f2f Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Tue, 2 Apr 2019 15:58:31 +0200 Subject: [PATCH] Elastic: Fix folders list scrolling on touch devices (#6706) --- CHANGELOG | 1 + skins/elastic/ui.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 02df4c5ad..ee7a9b95f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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) diff --git a/skins/elastic/ui.js b/skins/elastic/ui.js index f7cc6a690..4658b2087 100644 --- a/skins/elastic/ui.js +++ b/skins/elastic/ui.js @@ -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');