Fix bug where contact search menu fields where always unchecked in Larry skin

pull/5241/head
Aleksander Machniak 8 years ago
parent 78cf9c2e5c
commit 8935587a59

@ -4,6 +4,7 @@ CHANGELOG Roundcube Webmail
- Enigma: Added enigma_debug option
- Fix message list multi-select/deselect issue (#5219)
- Fix bug where getting HTML editor content could steal focus from other form controls (#5223)
- Fix bug where contact search menu fields where always unchecked in Larry skin
RELEASE 1.2-rc
--------------

@ -305,7 +305,9 @@ function rcube_mail_ui()
else if (rcmail.env.task == 'addressbook') {
rcmail.addEventListener('afterupload-photo', show_uploadform)
.addEventListener('beforepushgroup', push_contactgroup)
.addEventListener('beforepopgroup', pop_contactgroup);
.addEventListener('beforepopgroup', pop_contactgroup)
.addEventListener('menu-open', menu_toggle)
.addEventListener('menu-close', menu_toggle);
if (rcmail.env.action == '') {
new rcube_splitter({ id:'addressviewsplitterd', p1:'#addressview-left', p2:'#addressview-right',

Loading…
Cancel
Save