This is an automated email from the ASF dual-hosted git repository. humbedooh pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
commit f600cd3a56e7a223e0b6e72412491affb5174474 Author: Daniel Gruno <[email protected]> AuthorDate: Sun Nov 21 17:45:17 2021 +0100 nix unused variable, add a compact listmode bool --- webui/js/source/aavariables.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/js/source/aavariables.js b/webui/js/source/aavariables.js index 29b6d52..9ab33e5 100644 --- a/webui/js/source/aavariables.js +++ b/webui/js/source/aavariables.js @@ -29,7 +29,6 @@ let G_current_list = ''; let G_current_domain = ''; let G_current_year = 0; let G_current_month = 0; -let G_current_quick_search = ''; let G_current_query = ''; let G_current_open_email = null; let G_select_primed = false; @@ -37,6 +36,7 @@ let G_ponymail_preferences = {}; let G_ponymail_search_list = 'this'; let G_current_listmode = 'threaded'; +let G_current_listmode_compact = false; const PONYMAIL_MAX_NESTING = 10; // max nesting level before unthreading to save space // thread state
