From 853ff4c74f74894e5fd976b85d93940e9fcdbb1c Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 11 Nov 2019 17:03:33 +0100 Subject: Fixed some server-thingies --- static/index.html | 4 ++-- static/script.js | 17 +++++++++-------- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/static/index.html b/static/index.html index 891f219..4026e43 100644 --- a/static/index.html +++ b/static/index.html @@ -118,6 +118,6 @@ } - + - \ No newline at end of file + diff --git a/static/script.js b/static/script.js index cfab383..77f55b0 100644 --- a/static/script.js +++ b/static/script.js @@ -1,10 +1,12 @@ -const xmlHttp = new XMLHttpRequest(); +/*const xmlHttp = new XMLHttpRequest(); xmlHttp.onreadystatechange = function () { if (xmlHttp.readyState === 4 && xmlHttp.status === 200) renderTable(JSON.parse(xmlHttp.responseText)); }; xmlHttp.open("GET", "http://127.0.0.1:5000/api", true); -xmlHttp.send(); +xmlHttp.send();*/ + +renderTable([]); function renderTable(data) { const configs = getConfigs(); @@ -73,12 +75,11 @@ function getConfigs() { } } -Date.prototype.getWeek = function () { - const firstJan = new Date(this.getFullYear(), 0, 1); - return Math.ceil((((this - firstJan) / 86400000) + firstJan.getDay() + 1) / 7); -}; - function getWeekType() { + Date.prototype.getWeek = function () { + const firstJan = new Date(this.getFullYear(), 0, 1); + return Math.ceil((((this - firstJan) / 86400000) + firstJan.getDay() + 1) / 7); + }; const table = { 37: "a", 38: "b", @@ -126,7 +127,7 @@ function getWeekType() { try { return table[date.getWeek()] } catch (e) { - alert("Ferien!"); + alert("Ferien!"); return "a" } } -- cgit v1.2.3