From 996b8286b852143e0a91f48112c99740f4500a7d Mon Sep 17 00:00:00 2001 From: Felix Date: Thu, 12 Mar 2020 22:03:31 +0100 Subject: [PATCH] fixed dev url --- schedule.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schedule.html b/schedule.html index 65f9147..65da332 100644 --- a/schedule.html +++ b/schedule.html @@ -169,7 +169,7 @@ } }; - xhr.open("GET", "https://beta.kurswerkstatt-pan.de/api/schedule", true); + xhr.open("GET", "https://kurswerkstatt-pan.de/api/schedule", true); xhr.send(); }, methods: { @@ -189,7 +189,7 @@ saveSchedule: function() { var xhr = new XMLHttpRequest(); - xhr.open("POST", "https://beta.kurswerkstatt-pan.de/api/schedule", true); + xhr.open("POST", "https://kurswerkstatt-pan.de/api/schedule", true); xhr.setRequestHeader('Content-Type', 'application/html'); xhr.onload = function(e) { e.target.status === 200 ? alert("Gespeichert") : alert("Fehler: Falsches Passwort?")