aboutsummaryrefslogtreecommitdiffstats
path: root/public/js/app.js
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2019-08-28 10:42:25 +0200
committerHarald Eilertsen <haraldei@anduin.net>2019-08-28 10:42:25 +0200
commit2e23bcf1d45120b668f4967ea3d6dbe0536247ca (patch)
tree1be913d5e6d071b6ad354f200a7b7998657be927 /public/js/app.js
parentbc1218acd75b6d0594e568e07892f9f9bbb53d7a (diff)
downloadramaskrik-social-2e23bcf1d45120b668f4967ea3d6dbe0536247ca.tar.gz
ramaskrik-social-2e23bcf1d45120b668f4967ea3d6dbe0536247ca.tar.bz2
ramaskrik-social-2e23bcf1d45120b668f4967ea3d6dbe0536247ca.zip
Adapt to Ravenheart 2019, Oslo.
Also fetch the json directly from a file on the server. Since we don't really have any functionality in the backend app yet, we can deploy without it.
Diffstat (limited to 'public/js/app.js')
-rw-r--r--public/js/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/app.js b/public/js/app.js
index e219af4..606e21f 100644
--- a/public/js/app.js
+++ b/public/js/app.js
@@ -27,7 +27,7 @@ function fetch_rooms(data_done) {
function load_screenings(data_done) {
let req = new XMLHttpRequest()
req.addEventListener("load", data_done)
- req.open("GET", "http://localhost:8000/screenings")
+ req.open("GET", "http://localhost:8000/ravenheart-2019.json")
req.responseType = "json"
req.send()
}