diff options
author | sijanec <sijanecantonluka@gmail.com> | 2020-05-17 22:29:59 +0200 |
---|---|---|
committer | sijanec <sijanecantonluka@gmail.com> | 2020-05-17 22:29:59 +0200 |
commit | fb3562344b75865754e3da52fa0c053e493b69af (patch) | |
tree | 48d53e317e86813021d5cf1af2ea85d03d8fa068 /dist | |
parent | CSS (diff) | |
parent | Bug fix attempt (diff) | |
download | beziapp-fb3562344b75865754e3da52fa0c053e493b69af.tar beziapp-fb3562344b75865754e3da52fa0c053e493b69af.tar.gz beziapp-fb3562344b75865754e3da52fa0c053e493b69af.tar.bz2 beziapp-fb3562344b75865754e3da52fa0c053e493b69af.tar.lz beziapp-fb3562344b75865754e3da52fa0c053e493b69af.tar.xz beziapp-fb3562344b75865754e3da52fa0c053e493b69af.tar.zst beziapp-fb3562344b75865754e3da52fa0c053e493b69af.zip |
Diffstat (limited to 'dist')
-rw-r--r-- | dist/css/styles.css | 2 | ||||
-rw-r--r-- | dist/js/absences.js | 2 | ||||
-rw-r--r-- | dist/js/grades.js | 2 | ||||
-rw-r--r-- | dist/js/gradings.js | 2 | ||||
-rw-r--r-- | dist/js/meals.js | 4 | ||||
-rw-r--r-- | dist/js/teachers.js | 2 | ||||
-rw-r--r-- | dist/pages/about.html | 4 | ||||
-rw-r--r-- | dist/sw.js | 5 |
8 files changed, 16 insertions, 7 deletions
diff --git a/dist/css/styles.css b/dist/css/styles.css index f1160f2..b372c5e 100644 --- a/dist/css/styles.css +++ b/dist/css/styles.css @@ -273,7 +273,7 @@ span { color: var(--color-text); } -div { +div:not(.fc-time, .fc-title) { color: var(--color-text); } diff --git a/dist/js/absences.js b/dist/js/absences.js index 2ed5fe8..5fbc622 100644 --- a/dist/js/absences.js +++ b/dist/js/absences.js @@ -49,7 +49,7 @@ async function loadAbsences(forceRefresh = false) { ]; await Promise.all(promisesToRun); // If we don't have a list of absences, query it - if (absences === null || absences === {} || forceRefresh) { + if (absences == null || absences == {} || forceRefresh) { try { let gsecInstance = new gsec(); await gsecInstance.login(username, password); diff --git a/dist/js/grades.js b/dist/js/grades.js index 4c52848..aff62e4 100644 --- a/dist/js/grades.js +++ b/dist/js/grades.js @@ -38,7 +38,7 @@ async function loadGrades(force_refresh = false) { ]; await Promise.all(promises_to_run); // If we don't have a list of grades, fetch it - if (grades === null || grades === [] || force_refresh) { + if (grades == null || grades == [] || force_refresh) { try { let gsecInstance = new gsec(); diff --git a/dist/js/gradings.js b/dist/js/gradings.js index 33fda47..b5bf7b5 100644 --- a/dist/js/gradings.js +++ b/dist/js/gradings.js @@ -88,7 +88,7 @@ async function loadGradings(force_refresh = false) { }) ]; await Promise.all(promises_to_run); - if (gradings === null || gradings === [] || gradings === -1 || force_refresh) { + if (gradings == null || gradings == [] || gradings == -1 || force_refresh) { try { let gsecInstance = new gsec(); await gsecInstance.login(username, password); diff --git a/dist/js/meals.js b/dist/js/meals.js index 0a5313a..e9b3af8 100644 --- a/dist/js/meals.js +++ b/dist/js/meals.js @@ -49,7 +49,7 @@ async function getToken(callback, callbackparams = []) { type: "POST", success: (dataauth) => { - if(dataauth === null || dataauth.error == true) { + if(dataauth == null || dataauth.error == true) { UIAlert(D("authenticationError"), "getToken(): response error or null"); localforage.setItem("logged_in_lopolis", false).then( function(){ checkLogin(); @@ -97,7 +97,7 @@ async function getMenus(dataauth, callback, callbackparams = []) { type: "POST", success: (meals) => { - if(meals === null || meals.error == true) { + if(meals == null || meals.error == true) { UIAlert( D("errorGettingMenus"), "getMenus(): response error or null"); setLoading(false); localforage.setItem("logged_in_lopolis", false).then( () => { diff --git a/dist/js/teachers.js b/dist/js/teachers.js index da0a62d..da83c06 100644 --- a/dist/js/teachers.js +++ b/dist/js/teachers.js @@ -29,7 +29,7 @@ async function loadTeachers(force_refresh = false) { ]; await Promise.all(promises_to_run); // If we don't have a list of teachers, query it - if (teachers === null || teachers === [] || force_refresh) { + if (teachers == null || teachers == [] || force_refresh) { try { let gsecInstance = new gsec(); await gsecInstance.login(username, password); diff --git a/dist/pages/about.html b/dist/pages/about.html index f04883f..40fb4da 100644 --- a/dist/pages/about.html +++ b/dist/pages/about.html @@ -142,7 +142,11 @@ <div class="row"> <p> <small> +<<<<<<< HEAD ^HEAD b63b2381a851e2cbc6087bf4d355be4265e6982a +======= + ^HEAD 16d4d4b9f9b35edc7164cd5662ded7377b6960a9 +>>>>>>> 7b0e9737328c2dc5a0ff1bd063cd7818706256c3 </p> </div> </div> @@ -3,8 +3,13 @@ // Change version to cause cache refresh +<<<<<<< HEAD const static_cache_name = "site-static-1.0.13-beta-b63b238"; // latest commit is b63b2381a851e2cbc6087bf4d355be4265e6982a +======= +const static_cache_name = "site-static-1.0.13-beta-16d4d4b"; +// latest commit is 16d4d4b9f9b35edc7164cd5662ded7377b6960a9 +>>>>>>> 7b0e9737328c2dc5a0ff1bd063cd7818706256c3 // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! |