From ab974f3f03475e14e7ee48b408b8d9570abc350b Mon Sep 17 00:00:00 2001 From: DL6ER Date: Thu, 23 Feb 2017 12:22:03 +0100 Subject: [PATCH] Disable checkbox after starting generation of debug log since the action can not be changed afterwards --- scripts/pi-hole/js/debug.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/pi-hole/js/debug.js b/scripts/pi-hole/js/debug.js index 6508dfbe..c0db2ce0 100644 --- a/scripts/pi-hole/js/debug.js +++ b/scripts/pi-hole/js/debug.js @@ -60,5 +60,6 @@ function eventsource() { $("#debugBtn").on("click", function(){ $("#debugBtn").attr("disabled", true); + $("#upload").attr("disabled", true); eventsource(); });