diff options
author | rstular <rok@stular.eu> | 2020-05-20 21:32:12 +0200 |
---|---|---|
committer | rstular <rok@stular.eu> | 2020-05-20 21:32:12 +0200 |
commit | 1df0f474227ffeb901e6c1a26d51e8bd04a9e25d (patch) | |
tree | 8676dad6195658317a1e2258461b4f07a2b12dbb /dist/js/changelog.js | |
parent | Changelog (diff) | |
parent | forgot i'm not doing anything (diff) | |
download | beziapp-1df0f474227ffeb901e6c1a26d51e8bd04a9e25d.tar beziapp-1df0f474227ffeb901e6c1a26d51e8bd04a9e25d.tar.gz beziapp-1df0f474227ffeb901e6c1a26d51e8bd04a9e25d.tar.bz2 beziapp-1df0f474227ffeb901e6c1a26d51e8bd04a9e25d.tar.lz beziapp-1df0f474227ffeb901e6c1a26d51e8bd04a9e25d.tar.xz beziapp-1df0f474227ffeb901e6c1a26d51e8bd04a9e25d.tar.zst beziapp-1df0f474227ffeb901e6c1a26d51e8bd04a9e25d.zip |
Diffstat (limited to 'dist/js/changelog.js')
-rw-r--r-- | dist/js/changelog.js | 28 |
1 files changed, 2 insertions, 26 deletions
diff --git a/dist/js/changelog.js b/dist/js/changelog.js index ccc3493..d01d3b5 100644 --- a/dist/js/changelog.js +++ b/dist/js/changelog.js @@ -1,27 +1,3 @@ -/** - * 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 +async function checkLogin(){localforage.getItem("logged_in").then(function(value){if(value!==true){window.location.replace("/index.html");}}).catch(function(err){console.log(err);});} +document.addEventListener("DOMContentLoaded",()=>{checkLogin();$("#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 |