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
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2021-07-03 10:24:03 +0300
committerAleksander Machniak <alec@alec.pl>2021-07-03 10:25:05 +0300
commit4bcb40e395d1e32151e9ae76b307381436256cd9 (patch)
tree33d24ecbc9a5049fe5bc9ebd65c7ab9e466e5420
parent600a1e29ff45da0e9ad76efcf352f1f7408f95a2 (diff)
Fix shift + drag'n'drop menu not working Elastic skin with Chrome browser (#8107)
-rw-r--r--CHANGELOG1
-rw-r--r--skins/elastic/ui.js4
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index a8478f31e..4c60d661d 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -8,6 +8,7 @@ CHANGELOG Roundcube Webmail
- Fix bug where plus characters in attachment filename could have been ignored (#8074)
- Fix displaying HTML body with inline images encapsulated using TNEF format (winmail.dat)
- Fix handling of custom sender addresses with names (#8106)
+- Fix shift + drag'n'drop menu not working Elastic skin with Chrome browser (#8107)
RELEASE 1.4.11
--------------
diff --git a/skins/elastic/ui.js b/skins/elastic/ui.js
index 0c6b45d6e..50908e4c5 100644
--- a/skins/elastic/ui.js
+++ b/skins/elastic/ui.js
@@ -2533,7 +2533,9 @@ function rcube_elastic_ui()
}
menus[p.name] = {target: target};
- $(target).popover('show');
+
+ // setTimeout fixes Shift + drag'n'drop menu in Chrome (#8107)
+ setTimeout(function() { $(target).popover('show'); }, 1);
}
fn();