diff options
author | Anton L. Šijanec <sijanecantonluka@gmail.com> | 2020-05-13 12:36:59 +0200 |
---|---|---|
committer | Anton L. Šijanec <sijanecantonluka@gmail.com> | 2020-05-13 12:36:59 +0200 |
commit | 7e045252547f17c6f41ed4354a6ab12ff4b2164e (patch) | |
tree | e45c2f9373637118e0507537dc63fc376fa72e79 /js/jitsi.js | |
parent | DNM; update (diff) | |
download | beziapp-7e045252547f17c6f41ed4354a6ab12ff4b2164e.tar beziapp-7e045252547f17c6f41ed4354a6ab12ff4b2164e.tar.gz beziapp-7e045252547f17c6f41ed4354a6ab12ff4b2164e.tar.bz2 beziapp-7e045252547f17c6f41ed4354a6ab12ff4b2164e.tar.lz beziapp-7e045252547f17c6f41ed4354a6ab12ff4b2164e.tar.xz beziapp-7e045252547f17c6f41ed4354a6ab12ff4b2164e.tar.zst beziapp-7e045252547f17c6f41ed4354a6ab12ff4b2164e.zip |
Diffstat (limited to 'js/jitsi.js')
-rw-r--r-- | js/jitsi.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/js/jitsi.js b/js/jitsi.js new file mode 100644 index 0000000..8dd55ab --- /dev/null +++ b/js/jitsi.js @@ -0,0 +1,20 @@ +async function checkLogin() { + localforage.getItem("logged_in").then(function (value) { + // This code runs once the value has been loaded + // from the offline store. + if (value !== true) { + window.location.replace("/index.html"); + } + }).catch(function (err) { + // This code runs if there were any errors + console.log(err); + }); +} + +document.addEventListener("DOMContentLoaded", () => { + checkLogin(); + + // Setup side menu + const menus = document.querySelectorAll(".side-menu"); + M.Sidenav.init(menus, { edge: "right", draggable: true }); +}); |