-
Notifications
You must be signed in to change notification settings - Fork 56
/
options.html
61 lines (57 loc) · 1.56 KB
/
options.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>Org Capture Settings</title>
<style>
body: { padding: 10px; }
</style>
</head>
<body>
<table>
<tr>
<td>
Get notified after captures?
</td>
<td>
<input id="overlay" type="checkbox" />
</td>
</tr>
<tr>
<td>
Selected Template
</td>
<td>
<input id="selTemplate" />
</td>
</tr>
<tr>
<td>
Unselected Template
</td>
<td>
<input id="unselTemplate">
</td>
</tr>
<tr>
<td>
Use New-Style links? (Recommended for Org-Mode 9.0+)
</td>
<td>
<input id="useNewStyle" type="checkbox" />
</td>
</tr>
<tr>
<td>
Debug (will produce logging messages to console)
</td>
<td>
<input id="debug" type="checkbox" />
</td>
<td><bold>Note:</bold> You will have to enable "Preserve Log" in the console in order to see the logged messages.
</tr>
</table>
<div id="status"></div>
<button id="save">Save</button>
<script src="options.js"></script>
</body>
</html>