Fixed multi-message move/delete
| | |
| | | CHANGELOG RoundCube Webmail |
| | | --------------------------- |
| | | |
| | | 2007/08/29 (richs) |
| | | ---------- |
| | | - Fixed moving/deleting messages when more than 1 is selected |
| | | |
| | | 2007/08/15 (thomasb) |
| | | ---------- |
| | | - Applied patch for LDAP contacts listing by Glen Ogilvie |
| | |
| | | if (this.env.mailbox == this.env.drafts_mailbox) |
| | | { |
| | | this.enable_command('reply', 'reply-all', 'forward', false); |
| | | this.enable_command('show', 'delete', 'moveto', selected); |
| | | this.enable_command('show', selected); |
| | | this.enable_command('delete', 'moveto', (list.selection.length > 0 ? true : false)); |
| | | } |
| | | else |
| | | { |
| | | this.enable_command('show', 'reply', 'reply-all', 'forward', 'print', 'delete', 'moveto', selected); |
| | | this.enable_command('show', 'reply', 'reply-all', 'forward', 'print', selected); |
| | | this.enable_command('delete', 'moveto', (list.selection.length > 0 ? true : false)); |
| | | } |
| | | |
| | | // start timer for message preview (wait for double click) |