firepup-site/public/scripts/maintenance.js

13 lines
700 B
JavaScript
Raw Normal View History

2023-10-01 23:39:12 +00:00
maintenance = false
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"
}
} 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.")