-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (37 loc) · 1.36 KB
/
index.html
File metadata and controls
43 lines (37 loc) · 1.36 KB
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
<title>BlueMath Shell</title>
<link rel='stylesheet', href='/ext/font-awesome.min.css'/>
<link rel='stylesheet', href='style.css'/>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-99857402-1', '');
ga('send', 'pageview');
</script>
</head>
<body>
<script src="./ext/FileSaver.min.js"></script>
<script src="./src/examples.js"></script>
<script src="./src/extralibs.js"></script>
<script src="./ext/monaco-editor/min/vs/loader.js"></script>
<div id="container">
<div id="editor"></div>
<div id="runtime"></div>
</div>
<br/>
<div id="btn-panel">
<select id="examples-choices"></select>
<i class="btn fa fa-play fa-2x" id="btn-run" title="Run"></i>
<i class="btn fa fa-trash fa-2x" id="btn-clear" title="Clear"></i>
<i class="btn fa fa-save fa-2x" id="btn-save" title="Save"></i>
<i class="btn fa fa-book fa-2x" id="btn-docs" title="API Docs"></i>
</div>
<script src="src/shell.js"></script>
</body>
</html>