This commit is contained in:
2026-04-20 15:04:42 +03:00
parent 484ea9dc0f
commit eba29659d6
8 changed files with 587 additions and 588 deletions

12
static/js/app.js Normal file
View File

@@ -0,0 +1,12 @@
// ================================================================
// Boot Sequence
// ================================================================
window.addEventListener('DOMContentLoaded', () => {
window.fetchTowns();
window.fetchLog();
window.fetchClientStatus();
setInterval(window.fetchTowns, window.POLL_INTERVAL);
setInterval(window.fetchLog, window.POLL_INTERVAL);
setInterval(window.fetchClientStatus, window.POLL_INTERVAL);
});