-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·86 lines (85 loc) · 3.63 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
77
78
79
80
81
82
83
84
85
86
<html>
<head>
<title>Open Compiler</title>
<link rel="shortcut icon" href="./favicon.ico" type="image/vnd.microsoft.ico"/>
<link rel="icon" href="./favicon.png" type="image/png"/>
<link rel="apple-touch-icon" sizes="360x360" href="./favicon.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="description" content="OpenCompiler is an online compiler which build your code and execute on our build network. You just check your code and debugging quickly.">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<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>
<script src="https://unpkg.com/tippy.js@3/dist/tippy.all.min.js"></script>
<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" class="lsf-icon" title="play" data-tippy="Execute your code ( Ctrl+R / ⌘+R )"></button>
<div class="selectWrap" data-tippy="Choose your code language">
<select id="language-select">
</select>
</div>
<span id="beta-tag" data-tippy="You see the beta site">Beta</span>
<span id="server-tag" class="tag2" data-tippy="The site build your code">
Server
<div class="text"></div>
</span>
<span id="last-session-tag" class="tag2" data-tippy="Recover your previous code">
Last Session
<div class="text"></div>
</span>
<span id="modify-tag" data-tippy="Your code is modified from last execute">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 id="tip">
<p>Open Compiler doesn't support for interactive shell</p>
<img src="./tip.png" width="300">
</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>Open Compiler</span>
</div>
</body>
</html>