forked from Pezmc/Quiz-Scoreboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
47 lines (39 loc) · 1.3 KB
/
popup.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
<!DOCTYPE HTML>
<html>
<head>
<title>Pub Quiz Scoreboard</title>
<link rel="stylesheet" href="css/tables.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" title="style" />
<link rel="shortcut icon" href="images/favicon.ico" />
</head>
<body id="roundScoresPopup" style="position:relative">
<center><h2 id="roundScoresTitle">Name</h2></center>
<div class="buttons">
<img src="images/back_button.jpeg" id="roundBackward" style="float:left"; />
<img src="images/forward_button.jpeg" id="roundForward" style="float:right" />
</div>
<br />
<!-- Table we display our rounds in -->
<table id="roundScoresTable">
<thead>
<tr>
<th class="anim:update anim:number">#</th>
<th class="anim:id">Team Name</th>
<th class="anim:update anim:sort anim:number">Score</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<br />
<!-- Hidden table where we store our data -->
<table id="scoreTable" style="display:none"></table>
<!-- Our JS -->
<script src="js/lib/jquery-1.7.2.min.js"></script>
<script src="js/lib/animator.js"></script>
<script src="js/lib/sorttables.js"></script>
<script src="js/lib/rankingTableUpdate.js"></script>
<script src="js/tables.js"></script>
<script src="js/popup.js"></script>
</body>
</html>