-
Notifications
You must be signed in to change notification settings - Fork 1
/
background.html
130 lines (90 loc) · 3.55 KB
/
background.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html>
<head>
<title>
Learn to Spell
</title>
<script src='jquery-1.8.3.min.js'></script>
<script type='text/javascript' src='background.js'></script>
<div id="wikiInfoB"></div>
</head>
<body>
<div class="navbar">
<div class="navbar-inner">
<div class="container" style="width: 940px;">
<a class="brand" href="/index.html">Learn2Spell</a>
<ul class="nav">
<li class="active">
<a href="/index.html">Home</a>
</li>
<li>
<a href="/about.html">About</a>
</li>
<li>
<a href="/spell.html">Background</a>
</li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row" style="margin-top: 40px;">
<div class="span12 ">
<!--Body content-->
<div style="float: right;">
<div class="input-prepend input-append">
<span class="add-on">Level</span>
<span id="noi" class="add-on"></span>
<button id="minusOne" class="btn" type="button">-1</button>
<button id="plusOne" class="btn" type="button">+1</button>
</div>
<input id="check1" type="checkbox"> Training Mode
</br>
</div>
<h2 style="position:absolute;">
</h2>
<input id="spellbox" placeHolder="Type here" />
<br />
<div id="defTextArea"></div>
</div>
</div>
<button id="hideButton" class="btn btn-block" type="button" style="margin-top: 50px;">
Show/Hide List
</button>
<!-- <button id="refreshButton" class="btn btn-block" type="button" style="margin-top: 0px;">
Refresh
</button> -->
<div class="wordlist-container" >
<h3>Word List</h3>
<div class="input-append">
<input placeholder="Add a word manually..." type="text" id="listInput" value=""
/>
<button id="enterListButton" class="btn" type="button">
<i class="icon-ok">
</i>
</button><input placeholder="Search Wikionary - Press Enter" type="text" id="word">
</div>
<table class="table wordlist-table">
<thead>
<tr>
<th>Word</th>
<th>Definition</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
<span style="display: none;" id="inputHiddenSpan" class="add-on">
</span>
<div> Lookup a word:
<h1 id='pagetitle'></h1>
<div id="licenseinfo" style="font-size:small; display:none;">
Modified original content <a id='sourceurl'>from Wiktionary</a>.
</div>
</div>
</body>
</html>