From 3bd3b519e80923d075eda705a1c50d01de22536c Mon Sep 17 00:00:00 2001 From: alec Date: Sun, 31 May 2009 11:12:04 +0000 Subject: - Added possibility to invert messages selection git-svn-id: https://svn.roundcube.net/trunk@2581 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/js/app.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'roundcubemail/program/js/app.js') diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 18a4f1ae3..5e323e229 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -826,7 +826,10 @@ function rcube_webmail() break; case 'select-all': - this.message_list.select_all(props); + if (props == 'invert') + this.message_list.invert_selection(); + else + this.message_list.select_all(props); break; case 'select-none': -- cgit v1.2.3