forked from edpe/jennifer.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (48 loc) · 1.75 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- <link href="index_stylesheet.css" type="text/css" rel="stylesheet"> -->
<link rel="icon" type="image/png" sizes="32x32" href="resources/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="resources/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="resources/favicon-16x16.png">
<title>EDJE notes</title>
</head>
<body>
<div id="newNoteArea">
<form id=noteForm>
<label for="note"></label>
<textarea id="newNoteBox">
</textarea>
<br />
<button type="button" id="noteSubmit">Add note</button>
</form>
</div>
<div id="noteListDisplayArea">
</div>
<div id="noteDisplayArea">
<textarea id="noteDisplayBox">
</textarea>
</div>
<!-- load modules -->
<script src="src/note.js"></script>
<script src="src/noteList.js"></script>
<!-- load interface script -->
<script src="src/interface.js"></script>
<!-- load testing framework -->
<script src="spec/jennifer.js"></script>
<!-- unit tests - should be commented out unless running the test itself! -->
<script src="spec/noteSpec.js"></script>
<script src="spec/noteListSpec.js"></script>
<!-- feature tests - should be commented out unless running the test itself! -->
<script src="spec/features/createNoteSpec.js"></script>
<script src="spec/features/viewNoteSpec.js"></script>
<script src="spec/features/viewNoteListSpec.js"></script>
<script src="spec/features/clickableNoteListSpec.js"></script>
<script> jennifer.runTests(
function(){noteList = new NoteList()}
); </script>
</body>
</html>