-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
33 lines (26 loc) · 855 Bytes
/
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
<!doctype html>
<html>
<head>
<title>MorseFire Settings</title>
<link href="options.css" rel="stylesheet" />
</head>
<body>
<label for="wpm">WPM:</label>
<input type="number" min="1" id="wpm" />
<label for="wpm">Freq:</label>
<input type="number" min="0" id="freq" />
<label for="wpm">Effective:</label>
<input type="number" min="0" id="eff" />
<label for="ews">EWS:</label>
<input type="number" step="0.01" min="0" id="ews" />
<label for="ews">Volume</label>
<input type="number" step="0.05" max="1" min="0" id="playvolume" />
<details>
<summary>Experimental</summary>
<input type="checkbox" id="onHighlight" />
<label for="onHighlight">Play on highlight</label>
</details>
<button id="save">Save</button>
<script src="options.js"></script>
</body>
</html>