From 96956d3ba1e01b4b53b8c5ad841a8969037d41b3 Mon Sep 17 00:00:00 2001 From: roblevesque Date: Thu, 7 Jul 2016 11:26:10 -0400 Subject: [PATCH] Fix relative path issues with json file. I apparently don't know how to handle relative paths. added js/ in front of empiredata.json to handle that lack of knowledge. --- mapview/js/mapviewgl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mapview/js/mapviewgl.js b/mapview/js/mapviewgl.js index 9633af7..96dc399 100644 --- a/mapview/js/mapviewgl.js +++ b/mapview/js/mapviewgl.js @@ -1,6 +1,6 @@ // Load Data var xmlhttp = new XMLHttpRequest(); -var url = "empiredata.json"; +var url = "js/empiredata.json"; var jsonEmpire; xmlhttp.onreadystatechange = function() {