forked from justinyangusa/svhack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
executable file
·66 lines (58 loc) · 1.91 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
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<title>AutoCorrect - Options</title>
<link rel="stylesheet" href = "scripts/options.css">
<link rel="stylesheet" href = "scripts/buttons.css">
<script src="scripts/jquery.min.js" type="text/javascript"></script>
<script src="scripts/jquery.reveal.js" type="text/javascript"></script>
<script type="text/javascript" src="engine.js"></script>
<script type="text/javascript" src="options.js"></script>
<script type="text/javascript" src="scripts/filesaver.js"></script>
</head>
<body>
<div id= "wrapper">
<div id="header">
<h1>Autocorrect Options</h1>
</div>
<div id="options">
<fieldset id="options">
<legend>Word Substitution List</legend>
<ul id="substitution_list">
<li>
<div>
<select id="wordList" size="10" multiple="multiple" style="width: 100%">
<td width="100%"><select id="wordList" multiple="multiple" style="width: 100%">
</select>
<button id="removeButton">Remove</button>
<button id="removeAllButton">Remove All</button>
<button id="exportList" class="exportList">Export List</button>
</div>
</li>
<li>
<div id="instructions">
<p>Enter a typo to be replaced (no spaces allowed) and a word to replace it</p>
</div>
</li>
<li id="left">
Typo:<br><input id="searchText" type = "text">
</li>
<li id="left">
Replace with:<br><input id="replaceText" type = "txt">
</li>
<li>
<button id="addButton" class="greenbtn"><span class="label">Add</span></button>
</li>
</ul>
<br>
</fieldset>
</div>
<div id="action_panel">
<input id="findText" type="text" style = "width:300px;"/>
<button id="findTypoButton">Find typo</button>
<button id="findCorrectionButton">Find correction</button>
</div>
</div>
</div>
</div>
</body>