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/changelog.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/changelog.js')
-rw-r--r-- | dist/js/changelog.js | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/dist/js/changelog.js b/dist/js/changelog.js new file mode 100644 index 0000000..ccc3493 --- /dev/null +++ b/dist/js/changelog.js @@ -0,0 +1,27 @@ +/** + * Redirects user to login page if it's not logged int + */ +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 back button + $("#nav-back-button").click(function () { + window.location.replace("/pages/about.html"); + }); + + var elems = document.querySelectorAll(".collapsible"); + M.Collapsible.init(elems, {}); +});
\ No newline at end of file |