-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (74 loc) · 2.76 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
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google" value="notranslate">
<title>EZCommand</title>
<meta name="description" content="블록 코딩으로 손쉬워진 마인크래프트 커맨드">
<link rel="stylesheet" href="style.css">
<script src="storage.js"></script>
<script src="blockly_compressed.js"></script>
<!-- <script src="/blocks_compressed.js"></script> -->
<script src="javascript_compressed.js"></script>
</head>
<body>
<table width="100%" height="100%">
<tr>
<td>
<h1><a href="http://ezcommand.kro.kr/">EZCommand</a> (Test)</h1>
</td>
<td class="farSide">
<select id="languageMenu"></select>
</td>
</tr>
<tr>
<td colspan=2>
<table width="100%">
<tr id="tabRow" height="1em">
<td id="tab_blocks" class="tabon">...</td>
<td class="tabmin tab_collapse"> </td>
<td id="tab_javascript" class="taboff tab_collapse">JavaScript</td>
<td class="tabmin tab_collapse"> </td>
<td id="tab_xml" class="taboff tab_collapse">XML</td>
<td class="tabmin tab_collapse"> </td>
<td id="tab_json" class="taboff tab_collapse">JSON</td>
<td class="tabmin"> </td>
<td id="tab_code" class="taboff">
<select id="code_menu"></select>
</td>
<td class="tabmax">
<button id="trashButton" class="notext" title="...">
<img src='media/1x1.gif' class="trash icon21">
</button>
<button id="linkButton" class="notext" title="...">
<img src='media/1x1.gif' class="link icon21">
</button>
<button id="runButton" class="notext primary" title="...">
<img src='media/1x1.gif' class="run icon21">
</button>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="99%" colspan=2 id="content_area">
</td>
</tr>
</table>
<div id="content_blocks" class="content"></div>
<pre id="content_javascript" class="content prettyprint lang-js"></pre>
<textarea id="content_xml" class="content" wrap="off"></textarea>
<textarea id="content_json" class="content" wrap="off"></textarea>
<div id="blocks_xml"></div>
<script src="code.js"></script>
<script src="blocks/world/weather.js"></script>
<script src="blocks/event/onfunction.js"></script>
<script src="blocks/type/player.js"></script>
<script src="blocks/world/teleport.js"></script>
<script src="blocks/type/pos.js"></script>
<script src="blocks/server/ban_pardon.js"></script>
<script src="blocks/entity/effect.js"></script>
</body>
</html>