From 7e045252547f17c6f41ed4354a6ab12ff4b2164e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20L=2E=20=C5=A0ijanec?= Date: Wed, 13 May 2020 12:36:59 +0200 Subject: DNM; more update --- js/jitsi.js | 20 ++++++++++++++++++++ pages-src/jitsi.bvr | 5 +++-- pages/jitsi.html | 5 +++-- sw.js | 3 ++- 4 files changed, 28 insertions(+), 5 deletions(-) create mode 100644 js/jitsi.js 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 }); +}); diff --git a/pages-src/jitsi.bvr b/pages-src/jitsi.bvr index e2f581c..5a43605 100644 --- a/pages-src/jitsi.bvr +++ b/pages-src/jitsi.bvr @@ -18,13 +18,14 @@ + - + <@?i navigation@> -
+