-
Notifications
You must be signed in to change notification settings - Fork 0
/
item-search-results.html
213 lines (203 loc) · 7.24 KB
/
item-search-results.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags always come first -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
/>
<!-- Additional CSS must go after Bootstrap CSS -->
<link
rel="stylesheet"
href="node_modules/font-awesome/css/font-awesome.min.css"
/>
<link href="css/styles.css" rel="stylesheet" />
<link rel="shortcut icon" href="images/favicon.ico" />
<title>World of Warcraft Burning Crusade Search Engine</title>
</head>
<body
onload="xhr.onreadystatechange(); addEventListenerToSearchBar()"
class="bkground_dark"
>
<center>
<header class="bkground">
<div class="row">
<div class="col col-12" style="display: flex; align-items: center;">
<a class="nav-link" href="index.html" style="width: 20%;">
<img class="TBC_Logo" src="./images/BC_Logo.png"></img>
</a>
<h3 class="header-under-logo">World of Warcraft Database</h3>
</div>
</div>
</header>
<nav
class="navbar navbar-dark navbar-expand-sm navbariconstyling sticky-top"
>
<div class="container">
<a class="navbar-brand" href="index.html"
><img src="images/BC_W_Logo.png" height="30" width="30"
/></a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#bcNavbar"
>
<span class="fa fa-bars"></span>
</button>
<div class="collapse navbar-collapse" id="bcNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="item-search-results.html"
><i class="fa fa-shield fa-lg fa-fw"></i>Items</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="spells-search-results.html"
><i class="fa fa-book fa-lg fa-fw"></i>Spells</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="NPCs-search-results.html"
><i class="fa fa-user fa-lg fa-fw"></i>NPCs</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="arena-point-calculator.html"
><i class="fa fa-shield fa-lg fa-fw"></i>Arena Calculator</a
>
</li>
</ul>
</div>
</div>
</nav>
<div id="toolTipModal" class="modal fade" role="dialog">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body" data-dismiss="modal">
<div class="container-fluid">
<div class="col col-xs-2" id="fullToolTip">
<button
id="dismissModal"
type="button"
class="close"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true">×</span>
</button>
<div id="element-to-append-image" style="margin-top: 10px">
<table
class="table table-dark"
id="outline-of-table"
style="
box-sizing: border-box;
border-radius: 7px;
border: 1px solid #fff;
max-width: 310px;
display: inline-block;
font-size: 12px;
"
>
<tbody
class=""
id="toolTipDisplay"
style="
display: table;
margin-right: 0px;
min-width: 100%;
"
></tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<nav aria-label="breadcrumb">
<ol class="breadcrumb" id="customBreadCrumb">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li
class="breadcrumb-item active"
id="customActiveBreadCrumb"
aria-current="page"
>
Items
</li>
</ol>
</nav>
<div class="Wallpaper_Belf_Draenei img-fluid img-thumbnail">
<div class="row">
<div class="col-sm-12 mx-auto">
<h3 class="header-under-logo">Item Search</h3>
<h5>
<input
id="searchBar"
type="text"
placeholder="Enter search here: "
class="groove search item-search-bar"
style="height: 30 px"
/>
<button
id="searchButtonItems"
onclick="clearSearchItems(); searchExecuteItems()"
class="groove search fa fa-search execute_search"
style="height: 34px; width: 60px"
></button>
</h5>
</div>
<div class="table-responsive">
<div class="col col-xs-4 col-sm-6" id="resultsTable">
<table id="tableOfItems" class="table table-dark table-hover">
<thead class="thead-light">
<tr>
<th id="item-name-col" scope="col">Item Name</th>
<th scope="col">Subclass</th>
<th scope="col">ID</th>
<th id="image-col" scope="col">Image</th>
</tr>
</thead>
<tbody id="userSearchResults" colspan=""></tbody>
<div class="loader hide-loader">Loading...</div>
</table>
</div>
</div>
</div>
<div class="container mt-3">
<div class="row mb-3">
<div class="col col-2"></div>
<div id="pagination-container" class="col col-8"></div>
<div class="col col-2"></div>
</div>
</div>
</div>
<div class="container Bottom_Nav_of_Site">
<div class="row">
<div class="col-12">
<h3 class="header-under-logo">
Intellectual Property Reserved to Blizzard Entertainment
</h3>
</div>
</div>
</div>
</center>
<!-- jQuery must come first, then Popper.js, then the Bootstrap JavaScript plugins.-->
<script src="node_modules/jquery/dist/jquery.slim.min.js"></script>
<script src="node_modules/popper.js/dist/umd/popper.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="js/generateAccessToken.js"></script>
<script src="js/main.js"></script>
<script src="js/itemAPI.js"></script>
<script src="https://cdn.rawgit.com/Ademking/CoolConsole/23c8707c/CoolConsole.min.js"></script>
<script>
$(function () {
$('[data-toggle="tooltip"]').tooltip();
});
</script>
</body>
</html>