-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
30 lines (26 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Blockly Test</title>
</head>
<body>
<div id="blocklyDiv" style="height: 480px; width: 600px; float: left"></div>
<div id="canvasdiv" style="height: 500px; width: 500px; float: left; margin-left: 12px;"></div>
<!--<textarea id="textarea" style="height: 500px; width: 500px; float: left; margin-left: 12px;">Placeholder</textarea>-->
<xml id="toolbox" style="display: none">
<block type="grapher_si_equation"></block>
<block type="grapher_std_equation"></block>
<block type="grapher_ps_equation"></block>
<block type="grapher_table"></block>
<block type="grapher_graph"></block>
<block type="grapher_number"></block>
<block type="grapher_pair"></block>
</xml>
<script src="js/vendor/blockly/blockly_compressed.js"></script>
<!--<script src="js/vendor/blockly/blocks_compressed.js"></script>-->
<script src="js/vendor/blockly/javascript_compressed.js"></script>
<script src="js/vendor/blockly/msg/js/en.js"></script>
<script src="js/main.js"></script>
</body>
</html>