correct tutorial path
This commit is contained in:
parent
e4e57432e3
commit
b7e52c4348
|
@ -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();
|
||||||
|
|
Loading…
Reference in New Issue