-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathindex.html
36 lines (33 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Notepad</title>
<script src="https://docs.getgrist.com/grist-plugin-api.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/quill.snow.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/quill.bubble.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/quill.js"></script>
<link href="index.css" rel="stylesheet">
<script src="https://unpkg.com/rxjs@%5E7/dist/bundles/rxjs.umd.min.js"></script>
<script src="image-resize.min.js"></script>
</head>
<body>
<form id="configuration" style="display: none">
<h2>Notepad Widget Configuration</h1>
<div>
<label>Select Quill theme:
<select name="quillTheme" id="quillTheme">
<option value="snow">Snow (format via toolbar)</option>
<option value="bubble">Bubble (format via tooltip)</option>
</select>
</label>
</div>
<div>
<input type="submit" value="Save">
</div>
</form>
<div id="editor" class="editor-container">
</div>
<script src="index.js"></script>
</body>
</html>