You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by hu...@apache.org on 2020/09/06 11:17:22 UTC

[incubator-ponymail-foal] 01/02: note which list we're switching to

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 6df21fca9e1b5643c2bfa644a62090f1ace2173e
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Sun Sep 6 12:58:59 2020 +0200

    note which list we're switching to
---
 webui/js/ponymail.js               | 2 +-
 webui/js/source/listview-header.js | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/webui/js/ponymail.js b/webui/js/ponymail.js
index 2a89f20..c845346 100644
--- a/webui/js/ponymail.js
+++ b/webui/js/ponymail.js
@@ -2224,7 +2224,7 @@ function switch_list(list, from) {
       window.history.pushState({}, null, newhref);
     }
 
-    console.log("Switching list ...");
+    console.log("Switching list to %s...".format(listid));
     listview_list_lists({to: from ? listid : undefined});
     post_prime({cached: true, from: from});
 }
diff --git a/webui/js/source/listview-header.js b/webui/js/source/listview-header.js
index 88da484..abab30c 100644
--- a/webui/js/source/listview-header.js
+++ b/webui/js/source/listview-header.js
@@ -246,7 +246,7 @@ function switch_list(list, from) {
       window.history.pushState({}, null, newhref);
     }
 
-    console.log("Switching list ...");
+    console.log("Switching list to %s...".format(listid));
     listview_list_lists({to: from ? listid : undefined});
     post_prime({cached: true, from: from});
 }