summaryrefslogtreecommitdiff
path: root/program/js
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-08-14 15:22:16 +0200
committerAleksander Machniak <alec@alec.pl>2012-08-14 15:22:16 +0200
commitb28a38c7575dd6068d9e1b7f95e391e214a52a78 (patch)
treed73404cf169729ed1995bc84d193f2afb4c618ff /program/js
parentc965c8abe1aa55a70844e2c95de9bb8d8293e9eb (diff)
- Fix Remove from group option is active for contact search result (#1488608)
Diffstat (limited to 'program/js')
-rw-r--r--program/js/app.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 214a5cb80..de61b21f1 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -4031,8 +4031,7 @@ function rcube_webmail()
// if a group is currently selected, and there is at least one contact selected
// thend we can enable the group-remove-selected command
- this.enable_command('group-remove-selected', typeof this.env.group != 'undefined' && list.selection.length > 0);
-
+ this.enable_command('group-remove-selected', this.env.group && list.selection.length > 0);
this.enable_command('compose', this.env.group || list.selection.length > 0);
this.enable_command('edit', id && writable);
this.enable_command('delete', list.selection.length && writable);