Add link to tutorial

Fixes #17
This commit is contained in:
Ian Gulliver
2019-07-12 22:10:32 +00:00
parent be17ac2211
commit bd34d8e3a4
2 changed files with 5 additions and 0 deletions

View File

@@ -75,6 +75,9 @@ class EditorHelp extends EditorEntryBase {
this.addLine();
this.addLine();
this.addLink(
'Tutorial',
'https://github.com/firestuff/architype/blob/master/TUTORIAL.md');
this.addLink(
'GitHub',
'https://github.com/firestuff/architype/blob/master/README.md');
@@ -105,6 +108,7 @@ class EditorHelp extends EditorEntryBase {
let a = document.createElement('a');
a.href = href;
a.innerText = text;
a.target = '_blank';
this.line_.appendChild(a);
}