alecpl
2009-04-15 91df1995cd986d5ebf227e4b5489d2b29bd92601
- Fix messagelist focus issue when modifying status of selected messages (#1485807)


2 files modified
11 ■■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
program/js/app.js 10 ●●●●● patch | view | raw | blame | history
CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG RoundCube Webmail
===========================
- Fix messagelist focus issue when modifying status of selected messages (#1485807)
- Support STARTTLS in IMAP connection (#1485284)
- Fix DEL key problem in search boxes (#1485528)
- Support several e-mail addresses per user from virtuser_file (#1485678)
program/js/app.js
@@ -1160,11 +1160,13 @@
    var model, li;
    if (this.message_list) {
      this.message_list.blur();
      if (!rcube_mouse_is_over(e, this.message_list.list))
        this.message_list.blur();
      model = this.env.mailboxes;
    }
    else if (this.contact_list) {
      this.contact_list.blur();
      if (!rcube_mouse_is_over(e, this.contact_list.list))
        this.contact_list.blur();
      model = this.env.address_sources;
    }
    else if (this.ksearch_value) {
@@ -1181,8 +1183,8 @@
  this.drag_start = function(list)
  {
       this.initialBodyScrollTop = bw.ie ? 0 : window.pageYOffset;
       this.initialMailBoxScrollTop = document.getElementById("mailboxlist-container").scrollTop;
    this.initialBodyScrollTop = bw.ie ? 0 : window.pageYOffset;
    this.initialMailBoxScrollTop = document.getElementById("mailboxlist-container").scrollTop;
    var model = this.task == 'mail' ? this.env.mailboxes : this.env.address_sources;