-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (36 loc) · 811 Bytes
/
index.html
File metadata and controls
37 lines (36 loc) · 811 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Hyperaudio Pad</title>
<style type="text/css">
body {
margin:0px;
padding:0px;
overflow:scroll-y;
}
.main {
overflow:hidden;
height: 100%;
height: calc(100% - 54px);
width:100%;
position:absolute;
top:54px;
left:0px;
right:0px;
bottom:0px;
}
</style>
<script type="text/javascript">
function notify(type) {
var header = document.getElementById("header").contentWindow;
if(typeof header.notify === 'function') {
header.notify(type);
}
}
</script>
</head>
<body>
<iframe id="header" src="/commons/tools/header.html" height="100px" width="100%" frameborder="0" seamless scrolling="no"></iframe>
<iframe class="main" src="pad.html" height="100%" width="100%" frameborder="0" allowfullscreen seamless></iframe>
</body>
</html>