Enable command for marking messages read/unread

release-0.6
thomascube 17 years ago
parent 23b8701079
commit b85bf8b3f4

@ -3,7 +3,7 @@
| RoundCube Webmail Client Script | | RoundCube Webmail Client Script |
| | | |
| This file is part of the RoundCube Webmail client | | This file is part of the RoundCube Webmail client |
| Copyright (C) 2005-2007, RoundCube Dev, - Switzerland | | Copyright (C) 2005-2008, RoundCube Dev, - Switzerland |
| Licensed under the GNU GPL | | Licensed under the GNU GPL |
| | | |
+-----------------------------------------------------------------------+ +-----------------------------------------------------------------------+
@ -155,7 +155,7 @@ function rcube_webmail()
if (this.env.action=='show' || this.env.action=='preview') if (this.env.action=='show' || this.env.action=='preview')
{ {
this.enable_command('show', 'reply', 'reply-all', 'forward', 'moveto', 'delete', 'viewsource', 'print', 'load-attachment', true); this.enable_command('show', 'reply', 'reply-all', 'forward', 'moveto', 'delete', 'mark', 'viewsource', 'print', 'load-attachment', true);
if (this.env.next_uid) if (this.env.next_uid)
{ {
this.enable_command('nextmessage', true); this.enable_command('nextmessage', true);
@ -677,6 +677,11 @@ function rcube_webmail()
this.copy_contact(null, props); this.copy_contact(null, props);
break; break;
case 'mark':
if (props)
this.mark_message(props);
break;
case 'toggle_status': case 'toggle_status':
if (props && !props._row) if (props && !props._row)
break; break;
@ -1090,7 +1095,7 @@ function rcube_webmail()
} }
// Hide message command buttons until a message is selected // Hide message command buttons until a message is selected
this.enable_command('reply', 'reply-all', 'forward', 'delete', 'print', false); this.enable_command('reply', 'reply-all', 'forward', 'delete', 'mark', 'print', false);
return false; return false;
}; };
@ -1121,12 +1126,12 @@ function rcube_webmail()
{ {
this.enable_command('reply', 'reply-all', 'forward', false); this.enable_command('reply', 'reply-all', 'forward', false);
this.enable_command('show', selected); this.enable_command('show', selected);
this.enable_command('delete', 'moveto', (list.selection.length > 0 ? true : false)); this.enable_command('delete', 'moveto', 'mark', (list.selection.length > 0 ? true : false));
} }
else else
{ {
this.enable_command('show', 'reply', 'reply-all', 'forward', 'print', selected); this.enable_command('show', 'reply', 'reply-all', 'forward', 'print', selected);
this.enable_command('delete', 'moveto', (list.selection.length > 0 ? true : false)); this.enable_command('delete', 'moveto', 'mark', (list.selection.length > 0 ? true : false));
} }
// start timer for message preview (wait for double click) // start timer for message preview (wait for double click)

Loading…
Cancel
Save