From b7e52c4348fd9ed4a03004e91451c362acf64683 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Sat, 1 Aug 2020 02:42:32 +0200 Subject: [PATCH] correct tutorial path --- WebHostLib/static/tutorial.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebHostLib/static/tutorial.js b/WebHostLib/static/tutorial.js index 64986312..05fbcef2 100644 --- a/WebHostLib/static/tutorial.js +++ b/WebHostLib/static/tutorial.js @@ -6,7 +6,7 @@ window.addEventListener('load', () => { if (ajax.status !== 200) { reject('Unable to retrieve tutorial markdown file.') } resolve(ajax.responseText); }; - ajax.open('GET', 'tutorial.md', true); + ajax.open('GET', 'static/tutorial.md', true); ajax.send(); }).then((response) => { let markdown = new showdown.Converter();