-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
34 lines (27 loc) · 811 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TestRunner</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="app">
hello world
</div>
<script src="note-controller.js"></script>
<script src="assert.js"></script>
<script src="note-model.js"></script>
<script src="note-list-model.js"></script>
<script src="note-list-view.js"></script>
<script src="single-note-view.js"></script>
<script src="note-model-tests.js"></script>
<script>
let noteList = new NoteList();
let controller = new NoteController(noteList);
let app = document.getElementById(`app`);
controller.insertHTML(app);
controller.makeUrlChangeShowNoteForCurrentPage();
</script>
</body>
</html>