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();