-
Notifications
You must be signed in to change notification settings - Fork 2
/
options.html
40 lines (37 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Send to OmniFocus Options</title>
<meta charset="utf-8" />
</head>
<body>
<div style="width: 50em">
<div style="float: left; width: 50%">
<h2>Task template</h2>
<p>
<input type="text" name="title_template" id="title_template" size="40"></input>
<br><br>
<textarea type="text" name="note_template" id="note_template" cols="40" rows="3"></textarea>
</p>
</div>
<div style="float: right; width: 50%">
<h2>Demo</h2>
<p>
<input type="text" name="title_example" id="title_example" readonly size="40"></input>
<br><br>
<textarea type="text" name="note_example" id="note_example" cols="40" rows="3" disabled></textarea>
</p>
</div>
</div>
<div style="clear: both">
<h2>Value placeholders</h2>
<p>
<b>%title%</b> - Page title<br>
<b>%url%</b> - Page URL<br>
<b>%selection%</b> - Selected text
</p>
</div>
<script type="text/javascript" src="options.js"></script>
<script type="text/javascript" src="options_editor.js"></script>
</body>
</html>