-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·58 lines (39 loc) · 2.34 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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link href="style.css" rel="stylesheet" type="text/css" />
<title>Touch of Math</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="tables.js"></script>
<script type="text/javascript" src="convert.js"></script>
<script type="text/javascript" src="tree.js"></script>
<script type="text/javascript" src="math.js"></script>
<script type="text/javascript" src="display.js"></script>
<script type="text/javascript" src="displayTables.js"></script>
<script type="text/javascript" src="index.js"></script>
</head>
<body>
<div id="container">
<input type="text" id="equationInput" value="a+b=c" />
<!--<button id="doBackend" class="debugInfo">Backend</button>
<button id="generate" class="debugInfo">Generate</button>
<button id="postProcessing" class="debugInfo">Post Processing</button>
<button id="finalize" class="debugInfo">Finalize</button>-->
<button id="display">Display</button>
<button id="undo" title="Ctrl+Z">Undo</button>
<button id="redo" title="Ctrl+Y">Redo</button>
<!--<input type="checkbox" id="showDebugInfo" style="display:none;" />
<span class="label" style="display:none;">Show Debug Info</span>-->
<div id="history"></div>
<div id="equation"></div>
<div id="variableList"></div>
<!--<div id="debug" class="debugInfo"></div>
<div id="log" style="display:none; text-align:right; width:100%"></div>
<div id="initial" style="display:none"></div>
<div id="final" style="display:none"></div>-->
<span id="license"><a href="LICENSE">License</a></span>
</div>
</body>
</html>