Changeset 2391 in subversion


Ignore:
Timestamp:
Apr 15, 2009 4:57:37 AM (4 years ago)
Author:
alec
Message:
  • Fix messagelist focus issue when modifying status of selected messages (#1485807)
Location:
trunk/roundcubemail
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/CHANGELOG

    r2388 r2391  
    22=========================== 
    33 
     4- Fix messagelist focus issue when modifying status of selected messages (#1485807) 
    45- Support STARTTLS in IMAP connection (#1485284) 
    56- Fix DEL key problem in search boxes (#1485528) 
  • trunk/roundcubemail/program/js/app.js

    r2390 r2391  
    11611161 
    11621162    if (this.message_list) { 
    1163       this.message_list.blur(); 
     1163      if (!rcube_mouse_is_over(e, this.message_list.list)) 
     1164        this.message_list.blur(); 
    11641165      model = this.env.mailboxes; 
    11651166    } 
    11661167    else if (this.contact_list) { 
    1167       this.contact_list.blur(); 
     1168      if (!rcube_mouse_is_over(e, this.contact_list.list)) 
     1169        this.contact_list.blur(); 
    11681170      model = this.env.address_sources; 
    11691171    } 
     
    11821184  this.drag_start = function(list) 
    11831185  { 
    1184        this.initialBodyScrollTop = bw.ie ? 0 : window.pageYOffset; 
    1185        this.initialMailBoxScrollTop = document.getElementById("mailboxlist-container").scrollTop; 
     1186    this.initialBodyScrollTop = bw.ie ? 0 : window.pageYOffset; 
     1187    this.initialMailBoxScrollTop = document.getElementById("mailboxlist-container").scrollTop; 
    11861188 
    11871189    var model = this.task == 'mail' ? this.env.mailboxes : this.env.address_sources; 
Note: See TracChangeset for help on using the changeset viewer.