- Prevent from folder selection on virtual folder collapsing (#1488346)

pull/1/head
alecpl 13 years ago
parent dc365cc929
commit 1837c33002

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Prevent from folder selection on virtual folder collapsing (#1488346)
- Upgraded to jQuery 1.7.1 (#1488337) and jQuery UI 1.8.18
- Add Russian to the spellchecker languages list (#1488135)
- Remember custom skin selection after logout (#1488355)

@ -1444,8 +1444,9 @@ function rcube_webmail()
div.removeClass('expanded').addClass('collapsed');
this.env.collapsed_folders = this.env.collapsed_folders+'&'+urlencode(name)+'&';
// select parent folder if one of its childs is currently selected
if (this.env.mailbox.indexOf(name + this.env.delimiter) == 0)
// select the folder if one of its childs is currently selected
// don't select if it's virtual (#1488346)
if (this.env.mailbox.indexOf(name + this.env.delimiter) == 0 && !$(li).hasClass('virtual'))
this.command('list', name);
}
else

Loading…
Cancel
Save