diff options
Diffstat (limited to 'app/bits/static/load.js')
-rwxr-xr-x | app/bits/static/load.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/bits/static/load.js b/app/bits/static/load.js new file mode 100755 index 0000000..c748656 --- /dev/null +++ b/app/bits/static/load.js @@ -0,0 +1,16 @@ +appLoading = true; + +window.onload = async () => { + try { + document.getElementById("loader-text").innerText = "Loading..."; + updateLoader(); + + await plural(); + await refresh(); + appLoading = false; + } catch (e) { + document.getElementById("loadfailure").style.display = ""; + } +} + +function updateLoader() {}
\ No newline at end of file |