diff options
author | rstular <rok@stular.eu> | 2020-05-17 12:30:11 +0200 |
---|---|---|
committer | rstular <rok@stular.eu> | 2020-05-17 12:30:11 +0200 |
commit | b9f1f71fb41fb422cf6dad624378252801f88949 (patch) | |
tree | 5c08686257702654f7e8bf549d722904e5c9fee4 /dist/js/jitsi.js | |
parent | Fix undefined variable in GSEC fetch timetable (diff) | |
parent | dist should work, TODO: minify and bundle (diff) | |
download | beziapp-b9f1f71fb41fb422cf6dad624378252801f88949.tar beziapp-b9f1f71fb41fb422cf6dad624378252801f88949.tar.gz beziapp-b9f1f71fb41fb422cf6dad624378252801f88949.tar.bz2 beziapp-b9f1f71fb41fb422cf6dad624378252801f88949.tar.lz beziapp-b9f1f71fb41fb422cf6dad624378252801f88949.tar.xz beziapp-b9f1f71fb41fb422cf6dad624378252801f88949.tar.zst beziapp-b9f1f71fb41fb422cf6dad624378252801f88949.zip |
Diffstat (limited to 'dist/js/jitsi.js')
-rw-r--r-- | dist/js/jitsi.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/dist/js/jitsi.js b/dist/js/jitsi.js new file mode 100644 index 0000000..8dd55ab --- /dev/null +++ b/dist/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 }); +}); |