forked from ixs/weaveclient-chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tabs.html
52 lines (41 loc) · 798 Bytes
/
tabs.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
<!DOCTYPE html>
<html>
<head>
<title>Tabs from Other Computers</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="tabs.js"></script>
<link rel="stylesheet" type="text/css" href="skin/theme.css" />
<style>
.tabs {
list-style: none outside none;
}
.tab {
padding: 3px 0;
}
.favicon {
max-width: 16px;
max-height: 16px;
}
</style>
</head>
<body>
<div id="content">
<h1>Tabs from Other Computers</h1>
<div id="clients">
</div>
<div id="templates" style="display:none;">
<div id="client-template">
<h2>Client</h2>
<ul class="tabs">
</ul>
</div>
<ul>
<li id="tab-template" class="tab">
<img src="" class="favicon" />
<a href=""></a>
</li>
</ul>
</div>
</div>
</body>
</html>