From fc66b376cb3a2c73843cc882d500cfd743c0790e Mon Sep 17 00:00:00 2001 From: sijanec Date: Sun, 17 May 2020 00:13:40 +0200 Subject: dist should work, TODO: minify and bundle --- assets/js/jitsi.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 assets/js/jitsi.js (limited to 'assets/js/jitsi.js') diff --git a/assets/js/jitsi.js b/assets/js/jitsi.js new file mode 100644 index 0000000..8dd55ab --- /dev/null +++ b/assets/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 }); +}); -- cgit v1.2.3