This is an automated email from the ASF dual-hosted git repository. sebb pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
commit 3c9a49b59111db2fb4ff7a37b953cd766c1fe1de Author: Sebb <[email protected]> AuthorDate: Thu Nov 18 00:45:35 2021 +0000 Regen --- webui/js/ponymail.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/webui/js/ponymail.js b/webui/js/ponymail.js index c34e4ae..89c7571 100644 --- a/webui/js/ponymail.js +++ b/webui/js/ponymail.js @@ -16,7 +16,7 @@ */ // THIS IS AN AUTOMATICALLY COMBINED FILE. PLEASE EDIT source/*.js!! -const PONYMAIL_REVISION = "fd180bb"; +const PONYMAIL_REVISION = "89e842a"; @@ -3883,9 +3883,9 @@ async function render_email_chatty(state, json) { #}, "Some text inside a div") */ -var txt = (msg) => document.createTextNode(msg); +const txt = (msg) => document.createTextNode(msg); -var HTML = (function() { +const HTML = (function() { function HTML(type, params, children) { /* create the raw element, or clone if passed an existing element */ @@ -4076,8 +4076,8 @@ function search_set_list(what) { ******************************************/ const MONTHS_SHORTENED = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']; -var calendar_index = 0; -var calendar_years_shown = 4; +let calendar_index = 0; +let calendar_years_shown = 4; function renderCalendar(FY, FM, LY, LM, activity = null) { calendar_index = 0;
