-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 946 Bytes
/
index.html
File metadata and controls
29 lines (29 loc) · 946 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SuperDoc Custom UI: vanilla tracked changes</title>
</head>
<body>
<div class="app">
<section class="editor-area">
<div id="mode-toggle" class="mode"></div>
<div id="editor"></div>
</section>
<aside class="sidebar">
<div class="sidebar-head">
<h2>Tracked changes</h2>
<div class="bulk">
<button id="prev" disabled>Prev</button>
<button id="next" disabled>Next</button>
<button id="reject-all" disabled>Reject all</button>
<button id="accept-all" class="primary" disabled>Accept all</button>
</div>
</div>
<ul id="changes" class="changes"></ul>
</aside>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>