- Fix pressing select all/unread multiple times (#1485723)
| | |
| | | |
| | | 2009/02/06 (alec) |
| | | ---------- |
| | | - Fix pressing select all/unread multiple times (#1485723) |
| | | - Fix selecting all unread does not honor new messages (#1485724) |
| | | |
| | | 2009/02/05 (alec) |
| | |
| | | |
| | | // reset but remember selection first |
| | | var select_before = this.selection.join(','); |
| | | this.clear_selection(); |
| | | this.selection = new Array(); |
| | | |
| | | for (var n in this.rows) |
| | | { |
| | |
| | | this.last_selected = n; |
| | | this.highlight_row(n, true); |
| | | } |
| | | else if (this.rows[n]) |
| | | { |
| | | this.set_classname(this.rows[n].obj, 'selected', false); |
| | | this.set_classname(this.rows[n].obj, 'unfocused', false); |
| | | } |
| | | } |
| | | |
| | | // trigger event if selection changed |