-
Notifications
You must be signed in to change notification settings - Fork 0
/
bubble.html
36 lines (35 loc) · 1.17 KB
/
bubble.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>StreamerQnA bubble</title>
<script src="scripts/bubble/checkData.js"></script>
<script src="scripts/colorFormat.js"></script>
<script src="scripts/getTime.js"></script>
<script src="scripts/styling.js"></script>
<!-- config files -->
<script src="config/bubble.js"></script>
</head>
<body>
<div id="questionTableBody" style="width:100%; height:100%; overflow-y:scroll; overflow:hidden;">
<table id="table">
<tbody>
<tr id="header">
<td id="nameHeader"></td>
<td id="timeHeader"></td>
</tr>
<tr id="body">
<td colspan="2" id="questionBody"></td>
</tr>
</tbody>
</table>
<!-- Data will be displayed here -->
</div>
<script type="text/javascript">
//localStorage.clear()
window.shown = '';
setInterval(checkData, 250);
checkData();
</script>
</body>
</html>