forked from Frick/ttplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
34 lines (34 loc) · 975 Bytes
/
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
<html>
<head>
<link type="text/css" rel="stylesheet" href="styles/popup.css" />
<script type="text/javascript" src="scripts/jquery.js"></script>
<script type="text/javascript" src="scripts/popup.js"></script>
</head>
<body>
<div class="header fixedHeader">
<h2 class="roomName">Turntable.fm room not found</h2>
<div class="controls"></div>
<div class="tabs">
<div class="tab songtab selected">Song Log</div>
<div class="tab chattab">Chat</div>
<div class="tab chatlogtab">Chat Log</div>
<div class="options"></div>
</div>
</div>
<div class="header">
<h2 class="roomName">Turntable.fm room not found</h2>
<div class="controls"></div>
<div class="tabs">
<div class="tab songtab">Song Log</div>
<div class="tab chattab">Chat</div>
<div class="tab chatlogtab">Chat Log</div>
<div class="options"></div>
</div>
</div>
<div id="main">
<div id="songlog"></div>
<div id="chat"><div id="messages"></div></div>
<div id="chatlog"></div>
</div>
</body>
</html>