-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (47 loc) · 1.81 KB
/
index.html
File metadata and controls
60 lines (47 loc) · 1.81 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html prefix="og: https://ogp.me/ns#">
<head>
<title>KarmelScript WebLab</title>
<meta property="og:title" content="KarmelScript WebLab" />
<meta property="og:description" content="Assembly like programming language. Version 1.2w" />
<link rel="stylesheet" href="style.css?v=2">
</head>
<body>
<!-- Dragable window was removed -->
<!-- -->
<!-- <body> -->
<div class="w-div-centered noselect">
<div class="w-div-title">
<span class="w-main-title">KarmelScript</span>
<span class="w-main-title-2">WebLab</span>
<span class="w-main-title-3">Version 1.2w</span>
</div>
<div class="w-div-layout">
<div>
<h5>Code Editor</h5>
<textarea id="main-input" class="w-textarea w-code-editor" spellcheck="false" onkeydown="if(event.keyCode===9){var v=this.value,s=this.selectionStart,e=this.selectionEnd;this.value=v.substring(0, s)+'\t'+v.substring(e);this.selectionStart=this.selectionEnd=s+1;return false;}"></textarea>
</div>
<div class="w-div-layout-space"/>
<div>
<div>
<h5>Action Menu</h5>
<div class="w-div-action-menu">
<button onclick="KS_RunScript();" class="w-button">Run Script</button>
<button onclick="KS_ForceStop();" class="w-button">Force Stop</button>
<button onclick="window.open('./help.html', '_blank').focus();" class="w-button">[Help] Instructions</button>
<br>
<button onclick="FlushOutput();" class="w-button">Clear Output</button>
</div>
</div>
<div class="execution-status-div">
<span id="execution-status">Not running. </span><img id="execution-status-img" class="" src="./res/idle.png">
</div>
<div>
<h5>Code Output</h5>
<textarea id="main-output" class="w-textarea w-code-output" spellcheck="false" readonly></textarea>
</div>
</div>
</div>
</div></body>
<script src="program.js?v=5"></script>
</html>