-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (31 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link rel="stylesheet" data-name="vs/editor/editor.main" href="./node_modules/monaco-editor/min/vs/editor/editor.main.css" />
<title>Foo</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<h1>Foo</h1>
<div id="editor"></div>
<div id="chat" class="chat">
<div class="title">Chat</div>
<div class="contents scroll">
<input type="text" id="chat-input" />
<input type="button" id="chat-send" value="=>" onClick="sendChat()" />
</div>
</div>
</body>
<script>
var require = {
paths: {
vs: './node_modules/monaco-editor/min/vs'
}
};
</script>
<script src="./node_modules/monaco-editor/min/vs/loader.js"></script>
<script src="./node_modules/monaco-editor/min/vs/editor/editor.main.nls.js"></script>
<script src="./node_modules/monaco-editor/min/vs/editor/editor.main.js"></script>
<script type="text/javascript" src="script.js"></script>
</html>