summaryrefslogtreecommitdiffstats
path: root/dist/js/assets/js/jitsi.js
diff options
context:
space:
mode:
authorrstular <rok@stular.eu>2020-06-18 10:30:51 +0200
committerGitHub <noreply@github.com>2020-06-18 10:30:51 +0200
commit355d89863fc721f4024c516d2863a16d20540fdf (patch)
treed09edec73d65f81adfdb1139a46713f6c50ebe6a /dist/js/assets/js/jitsi.js
parentMerge pull request #23 from beziapp/dev (diff)
parentfixed help screens and notices for make generate != make install (diff)
downloadbeziapp-355d89863fc721f4024c516d2863a16d20540fdf.tar
beziapp-355d89863fc721f4024c516d2863a16d20540fdf.tar.gz
beziapp-355d89863fc721f4024c516d2863a16d20540fdf.tar.bz2
beziapp-355d89863fc721f4024c516d2863a16d20540fdf.tar.lz
beziapp-355d89863fc721f4024c516d2863a16d20540fdf.tar.xz
beziapp-355d89863fc721f4024c516d2863a16d20540fdf.tar.zst
beziapp-355d89863fc721f4024c516d2863a16d20540fdf.zip
Diffstat (limited to 'dist/js/assets/js/jitsi.js')
-rwxr-xr-xdist/js/assets/js/jitsi.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/dist/js/assets/js/jitsi.js b/dist/js/assets/js/jitsi.js
deleted file mode 100755
index 8dd55ab..0000000
--- a/dist/js/assets/js/jitsi.js
+++ /dev/null
@@ -1,20 +0,0 @@
-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 });
-});