-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnotebook.html
54 lines (47 loc) · 1.65 KB
/
notebook.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
<!DOCTYPE html>
<html>
<head>
<title>the mathed notebook by Ryan Sandor Richards</title>
<link rel="stylesheet" href="mathed.css" type="text/css">
<link rel="stylesheet" href="notebook.css" type="text/css">
</head>
<body>
<div id="header">
<h1>the <i>mathed</i> <b>notebook</b></h1>
<p class="controls">
<a class="button mathmode">Math (Ctrl+M)</a>
|
<a class="button new">New</a>
<a class="button save">Save</a>
<a class="button load">Load</a>
|
<a class="button bullet-list">• _</a>
<a class="button number-list">1) _</a>
</p>
<input type="text" id="mathin">
</div>
<div class="mathed-notebook" contenteditable="true"></div>
<div id="overlay"></div>
<div id="dialog-overlay"></div>
<div id="save-dialog" class="dialog">
<h3><i>save</i> <b>notebook</b></h3>
<span>New </span><input type="text" class="name"><span>, or existing</span>
<select></select>
<div class="controls">
<a class="button cancel">Cancel</a>
<a class="button save">Save</a>
</div>
</div>
<div id="load-dialog" class="dialog">
<h3><i>load</i> <b>notebook</b></h3>
<select class="name"></select>
<div class="controls">
<input type="button" value="Cancel" class="cancel">
<input type="button" value="Load" class="load">
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js" type="text/javascript"></script>
<script src="mathed.js" type="text/javascript" charset="utf-8"></script>
<script src="notebook.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>