-
-
Notifications
You must be signed in to change notification settings - Fork 657
Expand file tree
/
Copy pathtest.html
More file actions
21 lines (20 loc) · 735 Bytes
/
test.html
File metadata and controls
21 lines (20 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<script>
window.onload = function() {
window.document.body.style.margin = '0';
window.document.body.style.height = '100vh';
window.navigator.serviceWorker.register('./sw.js', {
scope: '/about/',
});
var iframe = window.document.createElement('iframe');
iframe.style.border = 'none';
iframe.style.width = '100%';
iframe.style.height = '100%';
iframe.style.margin = '0';
iframe.src = 'https://clients.isageek.net/about/hvtrs8%2F-pna%7B.eedopcgnmw%2Ccmm-mcln%2F'
window.document.body.appendChild(iframe);
};
</script>
</head>
</html>