diff options
author | sijanec <sijanecantonluka@gmail.com> | 2020-08-30 20:15:23 +0200 |
---|---|---|
committer | sijanec <sijanecantonluka@gmail.com> | 2020-08-30 20:15:23 +0200 |
commit | 78f4cb39ab3753cef0a6d16d9b3d842e8c3c78a1 (patch) | |
tree | 04ee73abc3ed235c9a3fd6da2113943e600f3f3d /dist/js/initialize.js | |
parent | popravil meal selection (diff) | |
download | beziapp-78f4cb39ab3753cef0a6d16d9b3d842e8c3c78a1.tar beziapp-78f4cb39ab3753cef0a6d16d9b3d842e8c3c78a1.tar.gz beziapp-78f4cb39ab3753cef0a6d16d9b3d842e8c3c78a1.tar.bz2 beziapp-78f4cb39ab3753cef0a6d16d9b3d842e8c3c78a1.tar.lz beziapp-78f4cb39ab3753cef0a6d16d9b3d842e8c3c78a1.tar.xz beziapp-78f4cb39ab3753cef0a6d16d9b3d842e8c3c78a1.tar.zst beziapp-78f4cb39ab3753cef0a6d16d9b3d842e8c3c78a1.zip |
Diffstat (limited to 'dist/js/initialize.js')
-rwxr-xr-x | dist/js/initialize.js | 36 |
1 files changed, 2 insertions, 34 deletions
diff --git a/dist/js/initialize.js b/dist/js/initialize.js index cb5d210..1d9a5f6 100755 --- a/dist/js/initialize.js +++ b/dist/js/initialize.js @@ -1,35 +1,3 @@ -function getUrlParameter(sParam) { - const url_params = new URLSearchParams(window.location.search); - const found_param = url_params.get(sParam); - return found_param === null ? "" : found_param; -} - -localforage.getItem("logged_in") - .then( - function (value) { - // This code runs once the value has been loaded - // from the offline store. - if (value == null) { - // Setup the storage if it doesn't exist - setupStorage(true); - window.location.replace("/login.html"); - } else if (value === false) { - // If storage exists, but user isn't logged in, redirect to login - window.location.replace("/login.html"); - } else { - // User is logged in, execute appropriate action - - if (getUrlParameter("m") !== "") { - window.location.replace("/pages/messaging.html#" + getUrlParameter("m")); - } else { - window.location.replace("/pages/timetable.html"); - } - - } - } - ).catch( - function (err) { - console.log(err); - } - ); +function getUrlParameter(sParam){const url_params=new URLSearchParams(window.location.search);const found_param=url_params.get(sParam);return found_param===null?"":found_param;} +localforage.getItem("logged_in").then(function(value){if(value==null){setupStorage(true);window.location.replace("/login.html");}else if(value===false){window.location.replace("/login.html");}else{if(getUrlParameter("m")!==""){window.location.replace("/pages/messaging.html#"+getUrlParameter("m"));}else{window.location.replace("/pages/timetable.html");}}}).catch(function(err){console.log(err);});
\ No newline at end of file |