diff --git a/public/scripts/maintenance.js b/public/scripts/maintenance.js index bfce85e..b0ac308 100644 --- a/public/scripts/maintenance.js +++ b/public/scripts/maintenance.js @@ -1,13 +1,13 @@ -maintenance = false +maintenance = false //TODO: Use env var instead if (maintenance) { if (window.location.href.indexOf("maintenance") == -1) { document.getElementById("Maintenance").innerHTML = `Warning:
Site under maintenance.
Be warned, site may be unstable.
` } document.getElementById("Maintenance").removeAttribute("hidden") - if (window.location.href.indexOf("maintenance") == -1 && window.location.href.indexOf('id') == -1) { - window.location.href = "/maintenance" -} + //if (window.location.href.indexOf("maintenance") == -1 && window.location.href.indexOf('id') == -1) { + //window.location.href = "/maintenance" + //} } else if (!(window.location.href.indexOf("maintenance") == -1)) { document.getElementById("Maintenance").innerHTML = `Website not under maintenance.` } -console.info("Maintenance Script done.") \ No newline at end of file +console.info("Maintenance Script done.")