From 4638ba703a955bacfd3734ad0901ba453dfad24e Mon Sep 17 00:00:00 2001 From: sijanec Date: Mon, 18 May 2020 00:33:50 +0200 Subject: window.onerror --- assets/js/app.js | 7 +++++++ dist/js/app.js | 7 +++++++ dist/js/gsec.js | 2 +- dist/pages/about.html | 2 +- dist/sw.js | 4 ++-- 5 files changed, 18 insertions(+), 4 deletions(-) diff --git a/assets/js/app.js b/assets/js/app.js index 79ccf06..b2623b9 100644 --- a/assets/js/app.js +++ b/assets/js/app.js @@ -47,3 +47,10 @@ function gsecErrorHandlerUI(err) { UIAlert( D("gsecErrOther") ); } } + + +window.onerror = function (msg, url, lineNo, columnNo, error) { + // ... handle error ... + console.log("error!"); + return false; +} diff --git a/dist/js/app.js b/dist/js/app.js index 79ccf06..d47437e 100644 --- a/dist/js/app.js +++ b/dist/js/app.js @@ -47,3 +47,10 @@ function gsecErrorHandlerUI(err) { UIAlert( D("gsecErrOther") ); } } + + +window.onerror = function (msg, url, lineNo, columnNo, error) { + // ... handle error ... + alert("f u k"); + return false; +} diff --git a/dist/js/gsec.js b/dist/js/gsec.js index 404bc0c..a3a8bdd 100644 --- a/dist/js/gsec.js +++ b/dist/js/gsec.js @@ -292,7 +292,7 @@ class gsec { const SUBJECT_REGEX = /^(.+?(?= \()|.+(?! \())/; // For some reason, JS doesn't support conditional regex const ABKURZUNG_REGEX = /\((.+)\)/; - const DAY_REGEX = /^(.+?), /; + const DAY_REGEX = /^(.+?), /m; const PERIOD_REGEX = /, (\d+?)\. ura/; const TIME_RANGE_REGEX = /\((.+?) - (.+?)\)/; diff --git a/dist/pages/about.html b/dist/pages/about.html index d357ecf..a32a331 100644 --- a/dist/pages/about.html +++ b/dist/pages/about.html @@ -142,7 +142,7 @@

- ^HEAD b989d252515d9d8e636f1c86cdfb71bb68938a30 + ^HEAD bed93d7d52a80a05cd87c5eeacdcafde8cafe24a

diff --git a/dist/sw.js b/dist/sw.js index 3c3f398..87311f9 100644 --- a/dist/sw.js +++ b/dist/sw.js @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.13-beta-b989d25"; -// latest commit is b989d252515d9d8e636f1c86cdfb71bb68938a30 +const static_cache_name = "site-static-1.0.13-beta-bed93d7"; +// latest commit is bed93d7d52a80a05cd87c5eeacdcafde8cafe24a // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! -- cgit v1.2.3