summaryrefslogtreecommitdiff
path: root/program/js/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'program/js/app.js')
-rw-r--r--program/js/app.js5
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':