summaryrefslogtreecommitdiff
path: root/skins/larry/ui.js
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-09-11 15:07:21 +0200
committerAleksander Machniak <alec@alec.pl>2012-09-11 15:07:21 +0200
commiteac1b7a32d702b0f69d175c2867bd807ad26e7f2 (patch)
treebc0888399a53f7cdf0147b5256fd6b7d4cd08ca0 /skins/larry/ui.js
parent9287ed36b368f2c41d02293b781bb061a6875eef (diff)
Init splitter in Preferences also when env.action is empty
Diffstat (limited to 'skins/larry/ui.js')
-rw-r--r--skins/larry/ui.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/skins/larry/ui.js b/skins/larry/ui.js
index e3b5eefe4..c221b8681 100644
--- a/skins/larry/ui.js
+++ b/skins/larry/ui.js
@@ -144,7 +144,7 @@ function rcube_mail_ui()
new rcube_splitter({ id:'identviewsplitter', p1:'#identitieslist', p2:'#identity-details',
orientation:'v', relative:true, start:266, min:180, size:12 }).init();
}
- else if (rcmail.env.action == 'preferences') {
+ else if (rcmail.env.action == 'preferences' || !rcmail.env.action) {
new rcube_splitter({ id:'prefviewsplitter', p1:'#sectionslist', p2:'#preferences-box',
orientation:'v', relative:true, start:266, min:180, size:12 }).init();
}