diff --git a/data/interfaces/default/config.html b/data/interfaces/default/config.html index 3f6caf67..eaa48fd9 100755 --- a/data/interfaces/default/config.html +++ b/data/interfaces/default/config.html @@ -101,8 +101,21 @@
${config['branch_history']}
- Provider Usage -
${config['dlstats']}
+
+ + Show Stats +
+
@@ -341,7 +354,7 @@ -
+
@@ -1485,6 +1498,15 @@ document.getElementById("auth_options").style.display = "none"; } } + function show_stats() + { + var x = document.getElementById("stats"); + if (x.style.display === "none") { + x.style.display = "block"; + } else { + x.style.display = "none"; + } + }