firepup-site/public/scripts/maintenance.js

14 lines
737 B
JavaScript
Raw Normal View History

maintenance = false //TODO: Use env var instead
2023-10-01 23:39:12 +00:00
if (maintenance) {
if (window.location.href.indexOf("maintenance") == -1) {
document.getElementById("Maintenance").innerHTML = `<span class="warning">Warning:<br/>Site under maintenance.<br/>Be warned, site may be unstable.</span>`
}
document.getElementById("Maintenance").removeAttribute("hidden")
//if (window.location.href.indexOf("maintenance") == -1 && window.location.href.indexOf('id') == -1) {
//window.location.href = "/maintenance"
//}
2023-10-01 23:39:12 +00:00
} else if (!(window.location.href.indexOf("maintenance") == -1)) {
document.getElementById("Maintenance").innerHTML = `<span class="rainbow">Website not under maintenance.</span>`
}
console.info("Maintenance Script done.")