-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (68 loc) · 2.42 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
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/png" href="favicon16x16.png">
<link rel="icon" type="image/png" href="favicon32x32.png">
<link rel="icon" type="image/png" href="favicon48x48.png">
<title>Hmm</title>
<link rel="stylesheet" type="text/css" href="reset.css">
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
});
</script>
<script type="text/javascript" async
src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
</head>
<body>
<div id="editor">
<div id="editcont">
<div id="editorsize" onclick="factBox.toggleSize();">
±
</div>
<input id="title" type="text" name="Title" placeholder="title">
</div>
<textarea id="facts" placeholder="Content"></textarea>
<div class="botbuttons">
<button id="editdone" class="done" type="button" onclick="closeEditor();">Done</button>
<button id="editcancel" class="cancel" type="button" onclick="closeEditorNoSave();">Cancel</button>
</div>
</div>
<div id="viewer">
<div id="viewcont">
<div id="viewersize" onclick="factBox.toggleSize();">
±
</div>
<div id="viewertitle">
</div>
<div id="viewerfav" onmouseover="this.innerHTML = openBubble.getFav() ? '☆' : '★';" onmouseout="this.innerHTML = openBubble.getFav() ? '★' : '☆';" onclick="toggleFavorite();">☆</div>
</div>
<span id="viewerfacts"></span>
<div class="botbuttons">
<button id="viewmaster" class="master" id="mastery" type="button" onclick="master();"></button>
<button id="viewedit" class="edit" id="Edit" type="button" onclick="openEditor();">Edit</button>
</div>
</div>
<canvas id="canvas" width="1280" height="720">Your browser does not support canvas</canvas>
<script src="Bubble.js"></script>
<script src="Bubbles.js"></script>
<script src="Colors.js"></script>
<script src="Context.js"></script>
<script src="Curve.js"></script>
<script src="Curves.js"></script>
<script src="Data.js"></script>
<script src="Edit.js"></script>
<script src="FactBox.js"></script>
<script src="Floaty.js"></script>
<script src="Floatys.js"></script>
<script src="Help.js"></script>
<script src="Keys.js"></script>
<script src="Sounds.js"></script>
<script src="Teleport.js"></script>
<script src="TempLine.js"></script>
<script src="Main.js"></script>
</body>
</html>