diff options
author | alecpl <alec@alec.pl> | 2009-05-31 11:12:04 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-05-31 11:12:04 +0000 |
commit | 52818559ce020e551addd125ac8382bdda020f46 (patch) | |
tree | 3fbb7adf817acc2d72e3c84749e20f5776f26e1d /program/js/app.js | |
parent | bd6d22e3e03c3f00f306f68f465d323932aa59c4 (diff) |
- Added possibility to invert messages selection
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 18a4f1ae3..5e323e229 100644 --- a/program/js/app.js +++ b/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': |