correct tutorial path

This commit is contained in:
Fabian Dill 2020-08-01 02:42:32 +02:00
parent e4e57432e3
commit b7e52c4348
1 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.') } if (ajax.status !== 200) { reject('Unable to retrieve tutorial markdown file.') }
resolve(ajax.responseText); resolve(ajax.responseText);
}; };
ajax.open('GET', 'tutorial.md', true); ajax.open('GET', 'static/tutorial.md', true);
ajax.send(); ajax.send();
}).then((response) => { }).then((response) => {
let markdown = new showdown.Converter(); let markdown = new showdown.Converter();