- Fix folders subscribtions on Konqueror (#1484841)
| | |
| | | CHANGELOG RoundCube Webmail |
| | | =========================== |
| | | |
| | | - Fix folders subscribtions on Konqueror (#1484841) |
| | | - Fix debug console on Konqueror and Safari |
| | | - Fix messagelist focus issue when modifying status of selected messages (#1485807) |
| | | - Support STARTTLS in IMAP connection (#1485284) |
| | |
| | | // don't do anything (another action processed before) |
| | | var evtarget = rcube_event.get_target(e); |
| | | if (this.dont_select || (evtarget && (evtarget.tagName == 'INPUT' || evtarget.tagName == 'IMG'))) |
| | | return false; |
| | | return true; |
| | | |
| | | // accept right-clicks |
| | | if (rcube_event.get_button(e) == 2) |
| | |
| | | var evtarget = rcube_event.get_target(e); |
| | | |
| | | if ((evtarget && (evtarget.tagName == 'INPUT' || evtarget.tagName == 'IMG'))) |
| | | return false; |
| | | return true; |
| | | |
| | | // don't do anything (another action processed before) |
| | | if (this.dont_select) |