-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditor.html
47 lines (47 loc) · 2.48 KB
/
editor.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
<!DOCTYPE html>
<html>
<head>
<title>Codeslate</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui">
<link rel="shortcut icon" href="media/Logo (Small).png">
<link rel="stylesheet" href="font/import.css">
<link rel="stylesheet" href="lib/codemirror.css">
<link rel="stylesheet" href="lib/cmExts/show-hint.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="editor.css">
<script src="lib/jquery.min.js"></script>
<script src="lib/lang.js"></script>
<script src="lang/overrides.js"></script>
<script src="lib/codemirror.js"></script>
<script src="lib/cmExts/autorefresh.js"></script>
<script src="lib/cmExts/closebrackets.js"></script>
<script src="lib/cmExts/closetag.js"></script>
<script src="lib/cmExts/show-hint.js"></script>
<script src="lib/cmExts/javascript-hint.js"></script>
<script src="lib/cmExts/xml-hint.js"></script>
<script src="lib/cmExts/html-hint.js"></script>
<script src="lib/cmLang/css.js"></script>
<script src="lib/cmLang/htmlmixed.js"></script>
<script src="lib/cmLang/javascript.js"></script>
<script src="lib/cmLang/xml.js"></script>
<script src="script.js"></script>
<script src="fileTypes.js"></script>
<script src="syntaxHighlighting.js"></script>
<script src="editor.js"></script>
<style class="syntaxHighlighting"></style>
</head>
<body>
<button class="openMenu mobile" onclick="openSidebar();">Open Menu</button>
<div class="sidebar">
<button class="newFilenameQueue sidebarItem mobile" onclick="closeSidebar();">Close Menu</button>
<button class="newFilenameQueue sidebarItem" onclick="promptNewFile();"><i>note_add</i> <span>@New file</span></button>
<button class="newFilenameQueue sidebarItem" onclick="runCode();"><i>play_arrow</i> <span>@Run</span></button>
<div class="files">
<div class="folder" data-folder=""></div>
</div>
<input class="newFilename sidebarItem" autocomplete="false" spellcheck="false">
<div class="newFilenameHint">@Type in the name of the file you want to create. Make folders by inserting folder names before the filename separated with a '/'.</div>
</div>
<div class="editor"></div>
</body>
</html>