From 4638ba703a955bacfd3734ad0901ba453dfad24e Mon Sep 17 00:00:00 2001 From: sijanec Date: Mon, 18 May 2020 00:33:50 +0200 Subject: window.onerror --- dist/js/app.js | 7 +++++++ dist/js/gsec.js | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) (limited to 'dist/js') 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 = /\((.+?) - (.+?)\)/; -- cgit v1.2.3