forked from ugwis/online-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·72 lines (71 loc) · 2.51 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
<html>
<head>
<title>Online Editor</title>
<link rel="shortcut icon" href="./favicon.ico" type="image/vnd.microsoft.ico"/>
<link rel="icon" href="./favicon.png" type="image/png"/>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="ace-builds/src-min/ace.js"></script>
<script src="ace-builds/src-min/ext-language_tools.js"></script>
<script src="moment/min/moment.min.js"></script>
<script src="script.js"></script>
<script src="https://cdn.logrocket.com/LogRocket.min.js"></script>
<script>window.LogRocket && window.LogRocket.init('mmobh0/online-editor');</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-111027808-1"></script>
<meta http-equiv="refresh" content="0;URL='https://www.opencompiler.net/'" />
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-111027808-1');
</script>
</head>
<body>
<div id="toolbar">
<button id="run">▶</button>
<span>language: </span>
<div class="selectWrap">
<select id="language-select">
</select>
</div>
<span id="last-session-tag" class="tag2">
Last Session
<span class="text"></span>
</span>
<span id="modify-tag">Modified</span>
<span id="build-tag">Built</span>
<span id="warning-tag">Warning</span>
<div id="progressbar"></div>
</div>
<div id="editor"></div>
<div id="separator"></div>
<div id="stdio">
<div id="stdin"></div>
<div id="stdout"></div>
</div>
<div id="modal-wrap" class="hidden" style="opacity: 0.0">
<div id="modal">
<div class="header">
<select style="padding:0px; background:transparent;border:0px; width: 0px; height:40px;"></select>
<span id="confirmer-language-tag" class="tag2">Language<span class="text"></span>
</span>
<span id="confirmer-date-tag" class="tag2">Last Modified<span class="text"></span>
</span>
</div>
<div id="confirmer"></div>
<div class="footer">
<button id="btn-cancel">Cancel</button>
<button id="btn-recover">Recover</button>
</div>
</div>
</div>
<div id="loading">
<div id="logo">
<div id="logo1"><div><div><div></div></div></div></div>
<div id="logo2"><div><div><div></div></div></div></div>
<div id="logo3"><div><div><div></div></div></div></div>
</div>
<span>Online Editor</span>
</div>
</body>
</html>