Changeset 2391 in subversion
- Timestamp:
- Apr 15, 2009 4:57:37 AM (4 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/js/app.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r2388 r2391 2 2 =========================== 3 3 4 - Fix messagelist focus issue when modifying status of selected messages (#1485807) 4 5 - Support STARTTLS in IMAP connection (#1485284) 5 6 - Fix DEL key problem in search boxes (#1485528) -
trunk/roundcubemail/program/js/app.js
r2390 r2391 1161 1161 1162 1162 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(); 1164 1165 model = this.env.mailboxes; 1165 1166 } 1166 1167 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(); 1168 1170 model = this.env.address_sources; 1169 1171 } … … 1182 1184 this.drag_start = function(list) 1183 1185 { 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; 1186 1188 1187 1189 var model = this.task == 'mail' ? this.env.mailboxes : this.env.address_sources;
Note: See TracChangeset
for help on using the changeset viewer.
