commit ccb7990: [Minor] Hide Refresh button when it is unused

moisseev moiseev at mezonplus.ru
Sun Jun 7 19:49:06 UTC 2020


Author: moisseev
Date: 2020-06-07 18:01:04 +0300
URL: https://github.com/rspamd/rspamd/commit/ccb7990e8ce0b42c80aa8cd10c763af5ea5ebac3 (refs/pull/3397/head)

[Minor] Hide Refresh button when it is unused

---
 interface/index.html       | 2 +-
 interface/js/app/rspamd.js | 6 ++++++
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/interface/index.html b/interface/index.html
index 8e703649a..64f9fedd8 100644
--- a/interface/index.html
+++ b/interface/index.html
@@ -43,7 +43,7 @@
 		</ul>
     	<form class="navbar-form navbar-right" style="display: none;">
 			<div class="btn-group">
-				<a href="#" class="btn btn-default" role="button" data-toggle="button" id="refresh"><i class="glyphicon glyphicon-refresh glyphicon-spin"></i> Refresh</a>
+				<a href="#" class="btn btn-default" role="button" data-toggle="button" id="refresh" style="display: none;"><i class="glyphicon glyphicon-refresh glyphicon-spin"></i> Refresh</a>
 				<button class="btn btn-default dropdown-toggle" data-toggle="dropdown" id="autoRefresh">
 					<span id="countdown">--:--</span> <span class="caret"></span>
 				</button>
diff --git a/interface/js/app/rspamd.js b/interface/js/app/rspamd.js
index 972d3c247..585e20648 100644
--- a/interface/js/app/rspamd.js
+++ b/interface/js/app/rspamd.js
@@ -125,6 +125,12 @@ function ($, D3pie, visibility, NProgress, stickyTabs, tab_stat, tab_graph, tab_
             });
         }
 
+        if (["#scan_nav", "#selectors_nav", "#disconnect"].indexOf(tab_id) !== -1) {
+            $("#refresh").hide();
+        } else {
+            $("#refresh").show();
+        }
+
         switch (tab_id) {
             case "#status_nav":
                 (function () {


More information about the Commits mailing list