-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathedit.html
32 lines (29 loc) · 1.45 KB
/
edit.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
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="edit.css" />
<link rel="stylesheet" data-name="vs/editor/editor.main"
href="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.36.1/min/vs/editor/editor.main.min.css">
<title>Paper Cranes - Editor</title>
</head>
<body class="ready">
<div id="feature-editor-root"></div>
<canvas id="visualizer" width="1920" height="1920"></canvas>
<div id="save-and-publish" class="sparkly animated">
<button id="save">Save</button>
<button id="publish">
<a href="https://github.com/loqwai/paper-cranes/new/main/shaders" target="_blank">Publish</a>
</button>
<button id="reset">Reset</button>
</div>
<div id="monaco-editor"></div>
<script type="module" src="./src/monaco.js"></script>
<script type="module" src="./index.js"></script>
<script type="module" src="./edit.js"></script>
<script type="module" src="./src/midi.js"></script>
<script>var require = { paths: { 'vs': 'https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.36.1/min/vs' } };</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.36.1/min/vs/loader.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.36.1/min/vs/editor/editor.main.nls.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.36.1/min/vs/editor/editor.main.js"></script>
</body>
</html>