-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
44 lines (42 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Open Vector Editor</title>
</head>
<body>
<!-- You can also require other files to run in this process -->
<link
rel="stylesheet"
type="text/css"
href="node_modules/open-vector-editor/umd/main.css"
/>
<link rel="stylesheet" type="text/css" href="src/style.css" />
<div id="notification" class="hidden">
<p id="message"></p>
<button id="close-button" onClick="closeNotification()">
Close
</button>
<button id="restart-button" onClick="restartApp()" class="hidden">
Restart
</button>
</div>
<a
class="bp3-button bp3-minimal darkModeBtn"
title="Dark Mode"
onclick="toggleDarkMode(); return false"
><span class="bp3-icon-standard bp3-icon-moon"></span
></a>
<script
type="text/javascript"
src="node_modules/open-vector-editor/umd/open-vector-editor.js"
></script>
<script
type="text/javascript"
src="node_modules/ove-auto-annotate/umd/ove-auto-annotate.js"
></script>
<script src="./src/renderer.js"></script>
<!-- <script src="./src/renderer_utils/autoUpdate.js"></script> -->
<script src="./src/renderer_utils/darkMode.js"></script>
</body>
</html>