Fix bug where it was too easy accidentally move a folder when using the subscription checkbox (#5655)

pull/5754/head
Aleksander Machniak 8 years ago
parent e3484f9225
commit 801f296872

@ -19,6 +19,7 @@ CHANGELOG Roundcube Webmail
- Fix regression where groups with email address were resolved to its members' addresses
- Fix update of group name in the contacts list header on group rename (#5648)
- Add rewrite rule to disable access to /vendor/bin folder in .htaccess (#5630)
- Fix bug where it was too easy accidentally move a folder when using the subscription checkbox (#5655)
RELEASE 1.2.3
-------------

@ -6519,7 +6519,7 @@ function rcube_webmail()
.addEventListener('collapse', function(node) { ref.folder_collapsed(node) })
.addEventListener('expand', function(node) { ref.folder_collapsed(node) })
.addEventListener('search', function(p) { if (p.query) ref.subscription_select(); })
.draggable({cancel: 'li.mailbox.root'})
.draggable({cancel: 'li.mailbox.root,input,div.treetoggle'})
.droppable({
// @todo: find better way, accept callback is executed for every folder
// on the list when dragging starts (and stops), this is slow, but

Loading…
Cancel
Save