diff options
author | alecpl <alec@alec.pl> | 2009-10-23 18:11:41 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-10-23 18:11:41 +0000 |
commit | 49771b1039b9beef6c78ecc1e52157384f8dcd8f (patch) | |
tree | a0d95b369f78f286a3abc0ba65cf3da722c84a32 /program/js/app.js | |
parent | 74e5bd449f5a2fd6b42314d7c72c58d88d73b5b9 (diff) |
- Don't display disabled sections in Settings (#1486099)
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 68011bdda..18b74fd57 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -351,7 +351,7 @@ function rcube_webmail() this.sections_list.addEventListener('select', function(o){ p.section_select(o); }); this.sections_list.init(); this.sections_list.focus(); - this.sections_list.select('general'); // open first section by default + this.sections_list.select_first(); // open first section by default } else if (this.gui_objects.subscriptionlist) this.init_subscription_list(); |