diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-06-11 20:28:34 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-06-11 20:29:22 +0200 |
commit | 04f841e90079464a9870a0a0a83b3ee2925a9adb (patch) | |
tree | 098bbebbddfd96536bea82a9500fd12097608381 /skins | |
parent | acb4b71ce55f3d98f7053b7bb8fdcf3c7858fbfc (diff) |
Fix list mode switch to 'List' after saving list settings in Larry skin (#1489164)
Diffstat (limited to 'skins')
-rw-r--r-- | skins/larry/ui.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/skins/larry/ui.js b/skins/larry/ui.js index 4485a21f8..93724dd4c 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -665,8 +665,6 @@ function rcube_mail_ui() $('input[name="sort_col"][value="'+rcmail.env.sort_col+'"]').prop('checked', true); $('input[name="sort_ord"][value="DESC"]').prop('checked', rcmail.env.sort_order == 'DESC'); $('input[name="sort_ord"][value="ASC"]').prop('checked', rcmail.env.sort_order != 'DESC'); - $('input[name="view"][value="thread"]').prop('checked', rcmail.env.threading ? true : false); - $('input[name="view"][value="list"]').prop('checked', rcmail.env.threading ? false : true); // set checkboxes $('input[name="list_col[]"]').each(function() { @@ -695,11 +693,10 @@ function rcube_mail_ui() var sort = $('input[name="sort_col"]:checked').val(), ord = $('input[name="sort_ord"]:checked').val(), - thread = $('input[name="view"]:checked').val(), cols = $('input[name="list_col[]"]:checked') .map(function(){ return this.value; }).get(); - rcmail.set_list_options(cols, sort, ord, thread == 'thread' ? 1 : 0); + rcmail.set_list_options(cols, sort, ord, rcmail.env.threading); } |