diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-09-11 15:07:21 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-09-11 15:08:50 +0200 |
commit | 1424e53b96e79ad212b67d74eb5d372c14e8b1b3 (patch) | |
tree | 739ecd397526220764a1dc5a8c7f2f4a90906399 /skins/larry | |
parent | 81a5d059d266f3520f2a9a472eca0988d847b16b (diff) |
Init splitter in Preferences also when env.action is empty
Diffstat (limited to 'skins/larry')
-rw-r--r-- | skins/larry/ui.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/skins/larry/ui.js b/skins/larry/ui.js index a3ceb4c91..fe449fddd 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -147,7 +147,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(); } |