summaryrefslogtreecommitdiff
path: root/program/js
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2011-07-18 18:40:58 +0000
committerthomascube <thomas@roundcube.net>2011-07-18 18:40:58 +0000
commit8c37422b4768615c9f5008c404d4a034f13aa1a1 (patch)
tree037046cd4bc9e656879fddf5dd80d2cb7b9ad6ba /program/js
parentfa59965b41023095d4da710a72ce71bb230de1eb (diff)
Only load contacts list in main view
Diffstat (limited to 'program/js')
-rw-r--r--program/js/app.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 5777167a1..f670bb0bc 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -340,7 +340,8 @@ function rcube_webmail()
this.enable_command('list', 'listgroup', 'advanced-search', true);
// load contacts of selected source
- this.command('list', this.env.source);
+ if (!this.env.action)
+ this.command('list', this.env.source);
break;