forked from multihack/multihack-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·116 lines (111 loc) · 5.21 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE HTML>
<html manifest="./cache.manifest" lang="en" class="theme-atom">
<head>
<meta charset="utf-8" />
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<title>MultiHack - Realtime IDE</title>
<!-- CodeMirror -->
<link rel="stylesheet" href="static/css/codemirror.css">
<link rel="stylesheet" href="static/css/codemirror-themes/material.css">
<link rel="stylesheet" href="static/css/show-hint.css">
<!-- MultiHack -->
<link rel="stylesheet" href="static/css/codemirror-themes/theme.css">
<link rel="stylesheet" href="static/css/filetree/treestyles.css">
<link rel="stylesheet" href="static/css/filetree/file-icons.css">
<link rel="stylesheet" href="static/css/style.css">
<!-- manifest and mobile -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-icon" href="static/img/icon192.png">
</head>
<body class="theme-dark theme-font-secondary">
<nav class="nav theme-dark">
<a target="_blank" href="https://github.com/RationalCoding/multihack-web">
<img src="static/img/logo.png" class="logo" />
</a>
<button id="save" title="Save" class="icon-button icon-collapse save go-button">
<img src="static/img/save.png">
<span>Save</span>
</button>
<button style="display:none" id="deploy" title="Deploy Website" class="icon-button icon-collapse deploy go-button">
<img src="static/img/launch.png">
<span>Deploy</span>
</button>
<button id="voice" title="Toggle Voice Chat" style="display:none" class="icon-button icon-collapse mic go-button">
<img src="static/img/muted.png">
<span>Talk</span>
</button>
<button id="network" title="Connection Graph" style="display:none" class="icon-button icon-collapse network go-button">
<img src="static/img/network.png">
<span>Peers</span>
<div id="tooltip-lostpeer" style="opacity:0; display:none;" class="tooltip">
<span>Lost connection to "Guest"</span>
</div>
</button>
</nav>
<div id="sidebar" class="sidebar theme-light">
<div class="panel-topbar theme-border">
<span id="room" title="Click to copy join link"></span>
<img id="root-plus" class="beside plus" src="static/img/newfile.png"/>
<img id="delete" class="beside delete" src="static/img/trash.png"/>
</div>
<div class="icon-button" id="collapsesidebar">
<img src="static/img/collapse.png">
</div>
<ol id="tree" class="tree panel">
</ol>
</div>
<div class="workspace tabs-hidden">
<div class="image-wrapper" style="display:none;">
<button id="image-contrast" class="icon-button image-contrast">
<img src="static/img/contrast-white.png" />
</button>
<img>
</div>
<div class="tabs" id="tabs"></div>
<div class="editor-wrapper" style="display:none;">
<textarea class="editor" id="editor"></textarea>
</div>
<div class="statusbar theme-mid theme-border">
<span id="working-file"></span>
<span id="saveStatus"></span>
<span class="pull-right" id="connectionStatus"></span>
</div>
</div>
<div id="modal" class="modal text-center theme-dark-border"></div>
<div id="overlay" class="blocking-overlay overlay"></div>
</body>
<!-- CodeMirror syntax -->
<script src="static/js/vendor/codemirror.js"></script>
<script async src="static/js/vendor/syntaxmodes/javascript.js"></script>
<script async src="static/js/vendor/syntaxmodes/css.js"></script>
<script async src="static/js/vendor/syntaxmodes/xml.js"></script>
<script async src="static/js/vendor/syntaxmodes/htmlmixed.js"></script>
<script async src="static/js/vendor/syntaxmodes/php.js"></script>
<!-- CodeMirror addons -->
<script async src="static/js/vendor/addons/xml-fold.js"></script>
<script async src="static/js/vendor/addons/closebrackets.js"></script>
<script async src="static/js/vendor/addons/matchbrackets.js"></script>
<script async src="static/js/vendor/addons/closetag.js"></script>
<script async src="static/js/vendor/addons/matchtags.js"></script>
<script async src="static/js/vendor/addons/show-hint.js"></script>
<script async src="static/js/vendor/addons/xml-hint.js"></script>
<script async src="static/js/vendor/addons/javascript-hint.js"></script>
<script async src="static/js/vendor/addons/css-hint.js"></script>
<script async src="static/js/vendor/addons/xml-hint.js"></script>
<script async src="static/js/vendor/addons/html-hint.js"></script>
<!--For saving projects-->
<script src="static/js/vendor/jszip.min.js"></script>
<script src="static/js/vendor/FileSaver.min.js"></script>
<!-- Socket.io -->
<script src="static/js/vendor/socket.io.js"></script>
<!-- HyperHost -->
<script src="static/js/vendor/peer.js"></script>
<script src="static/js/vendor/hyperhost.js"></script>
<!-- Core modules -->
<script src="static/js/multihack.js"></script>
<script>Multihack({
hostname: '/'
})
</script>
</html>