-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (46 loc) · 1.79 KB
/
index.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="viewport" content="width=320px" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<title>Jumpgate links</title>
</head>
<body>
<ul>
<script type="text/javascript">
var links = [
["IDB Open Hang", "https://jelin1.github.io/indexeddb-open-hang-reduction/indexeddb-repro.html"],
["Cache Tests", "https://jelin1.github.io/cacheTests.html"],
["Cookie", "https://jelin1.github.io/cookieTest.html"],
["WebStorage", "https://jelin1.github.io/webStorageTest.html"],
["SeattleTime crash", "http://www.seattletimes.com/nation-world/i-knew-them-all-confident-ananya-vinay-wins-spelling-bee/"],
["Doc write", "http://jelin1.github.io/documentWrite/documentwrite3.html"],
["Win open", "http://jelin1.github.io/documentWrite/windowopen.html"],
];
var archiveLinks = [
["Jumpgate page", "http://jumpgate/users/jelin/"],
];
for (var i = 0; i < links.length; i++) {
document.write("<li><a href='" + links[i][1] + "'>" + links[i][0] + "</a></li>");
}
</script>
</ul>
<a href="javascript:ToggleArchive()">Toggle Archive</a>
<ul id="archive" style="display:none">
<script type="text/javascript">
for (var i = 0; i < archiveLinks.length; i++) {
document.write("<li><a href='" + archiveLinks[i][1] + "'>" + archiveLinks[i][0] + "</a></li>");
}
function ToggleArchive() {
var el = document.getElementById("archive");
if (el.style.display == "none") {
el.style.display = "block";
}
else {
el.style.display = "none";
}
}
</script>
</ul>
</body>
</html>