Changeset b6265631 in github
- Timestamp:
- Sep 26, 2007 12:42:16 PM (6 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- f4f8c6c
- Parents:
- 5e80457
- Location:
- program/js
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
program/js/app.js
r852440b rb6265631 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 -
program/js/list.js
r1094cda rb6265631 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.
