- Fix DEL key problem in search boxes (#1485528)
| | |
| | | CHANGELOG RoundCube Webmail |
| | | =========================== |
| | | |
| | | - Fix DEL key problem in search boxes (#1485528) |
| | | - Support several e-mail addresses per user from virtuser_file (#1485678) |
| | | - Fix drag&drop with scrolling on IE (#1485786) |
| | | - Fix adding signature separator in html mode (#1485350) |
| | |
| | | |
| | | this.click_on_list = function(e) |
| | | { |
| | | if (this.gui_objects.qsearchbox) |
| | | this.gui_objects.qsearchbox.blur(); |
| | | |
| | | if (this.message_list) |
| | | this.message_list.focus(); |
| | | else if (this.contact_list) |
| | |
| | | } |
| | | } |
| | | |
| | | this.focus(); |
| | | |
| | | return rcube_event.cancel(e); |
| | | }, |
| | | |