Fix tutorial markdown not loading

This commit is contained in:
Chris Wilson 2020-08-03 23:19:35 -04:00
parent 25edca0439
commit 1cb8c82d4b
2 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ window.addEventListener('load', () => {
if (ajax.status !== 200) { reject('Unable to retrieve tutorial markdown file.') }
resolve(ajax.responseText);
};
ajax.open('GET', 'static/tutorial.md', true);
ajax.open('GET', 'static/assets/tutorial.md', true);
ajax.send();
}).then((response) => {
let markdown = new showdown.Converter();