-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (67 loc) · 1.92 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<title>Prudent Patterns</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<style>
body {
margin: 0;
padding: 0;
background-color: white;
}
.body-scroll {
overflow: hidden auto;
}
img {
-webkit-user-drag: none;
}
* {
box-sizing: border-box;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#root {
display: flex;
width: 100%;
height: 100%;
overflow: hidden;
position: fixed;
}
.body-scroll > #root {
width: 100%;
height: auto;
min-height: 100vh;
flex-direction: column;
overflow: initial;
position: initial;
}
</style>
</head>
<body>
<noscript> You need to enable JavaScript to run this app. </noscript>
<div id="root"></div>
<script src="/react.production.min.js"></script>
<script src="/react-dom.production.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Material+Icons" rel="stylesheet">
<script src="/index-dbb4d4cca694da16.js"></script>
<script>
(function () {
Noodl.Env['BaseUrl'] = '/';
})();
</script>
<script type="text/javascript" src="/noodl_modules/custom-html-module/index.js"></script>
<script src="/noodl.deploy.js"></script>
<script type="application/javascript">
document.addEventListener("DOMContentLoaded", function () {
const root = document.getElementById("root");
window.Noodl._viewerReact.renderDeployed(root, __noodl_modules, window.projectData);
});
</script>
</body>
</html>