-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathoptions.html
29 lines (29 loc) · 1.08 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
<html>
<head>
<meta charset="utf-8"/>
<script src="default-options.js"></script>
<script src="options.js"></script>
<link href="forms-min.css" rel="stylesheet"/>
</head>
<body>
<form class="pure-form pure-form-aligned">
<fieldset>
<div class="pure-control-group">
<label for="elem-name">Element name </label>
<input id="elem-name" type="text"
title="Element name used when inserting the clipboard contents"/>
</div>
<div class="pure-control-group">
<label for="container-selector">Container selector </label>
<input id="container-selector" type="text"
title="Css selector used to find element into which new elements will be inserted. Default value - 'body' - means that new elements will be appended at the end of the document."/>
</div>
<div class="pure-control-group">
<label for="monitor-interval">Timer interval </label>
<input id="monitor-interval" type="number" min="100" step="10"
title="Time (in milliseconds) between clipboard checks. Low values may cause performance problems."/>
</div>
</fieldset>
</form>
</body>
</html>