-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (45 loc) · 790 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body
{
margin: 0;
overflow: hidden;
}
#myIframe
{
height: 100%;
left: 0px;
position: absolute;
top: 0px;
width: 100%;
}
</style>
</head>
<body>
<iframe id="myIframe" frameborder="0"></iframe>
<script type='text/javascript'>
{
var loc = window.location.toString();
var params = loc.split('?')[1];
var i = document.getElementById('myIframe');
if (params === undefined || params === null) {
i.src = "http://witt.null2.net/shiny/wic/";
} else {
i.src = "http://witt.null2.net/shiny/wic/" + "?" + params;
}
i.frameborder = "0"
i.position = "fixed";
i.border = "none";
i.top = "0";
i.right = "0";
i.bottom = "0";
i.left = "0";
i.width = "100%";
i.height = "100%";
document.body.appendChild(i);
};
</script>
</body>
</html>