Changeset 828 in subversion
- Timestamp:
- Sep 26, 2007 12:42:16 PM (6 years ago)
- Location:
- trunk/roundcubemail/program/js
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/js/app.js
r822 r828 1441 1441 id = selection[n]; 1442 1442 a_uids[a_uids.length] = id; 1443 this.message_list.remove_row(id); 1444 } 1445 1446 this.message_list.select_next(); 1443 this.message_list.remove_row(id, (n == selection.length-1)); 1444 } 1447 1445 } 1448 1446 -
trunk/roundcubemail/program/js/list.js
r776 r828 133 133 * 'remove' message row from list (just hide it) 134 134 */ 135 remove_row: function(uid )135 remove_row: function(uid, sel_next) 136 136 { 137 137 if (this.rows[uid].obj) 138 138 this.rows[uid].obj.style.display = 'none'; 139 140 if (sel_next) 141 this.select_next(); 139 142 140 143 this.rows[uid] = null;
Note: See TracChangeset
for help on using the changeset viewer.
