-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
133 lines (110 loc) · 5.22 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="Description" content="Put your description here.">
<!--
The `<base>` tag below is present to support two advanced deployment options:
1) Differential serving. 2) Serving from a non-root path.
Instead of manually editing the `<base>` tag yourself, you should generally either:
a) Add a `basePath` property to the build configuration in your `polymer.json`.
b) Use the `--base-path` command-line option for `polymer build`.
-->
<base href="/">
<link rel="icon" href="images/favicon.ico">
<!-- See https://goo.gl/OOhYW5 -->
<link rel="manifest" href="manifest.json">
<!-- See https://goo.gl/qRE0vM -->
<meta name="theme-color" content="#3f51b5">
<!-- Add to homescreen for Chrome on Android. Fallback for manifest.json -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="My App">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="My App">
<!-- Homescreen icons -->
<link rel="apple-touch-icon" href="images/manifest/icon-48x48.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/manifest/icon-72x72.png">
<link rel="apple-touch-icon" sizes="96x96" href="images/manifest/icon-96x96.png">
<link rel="apple-touch-icon" sizes="144x144" href="images/manifest/icon-144x144.png">
<link rel="apple-touch-icon" sizes="192x192" href="images/manifest/icon-192x192.png">
<!-- Tile icon for Windows 8 (144x144 + tile color) -->
<meta name="msapplication-TileImage" content="images/manifest/icon-144x144.png">
<meta name="msapplication-TileColor" content="#3f51b5">
<meta name="msapplication-tap-highlight" content="no">
<!-- Default twitter cards -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@username">
<meta property="og:type" content="website">
<meta property="og:site_name" content="my-app">
<meta property="og:image" content="images/manifest/icon-144x144.png" />
<script defer src="node_modules/axios/dist/axios.min.js"></script>
<!-- Include the Quill library -->
<!-- แก้ object.assign ใน ie 11 ใช้ไม่ได้ แต่ ถ้าเปิดแล้วบัคเปิดเว็บไม่ได้-->
<!-- <script src="//cdn.polyfill.io/v2/polyfill.min.js"></script> -->
<script defer src="script/quill.1.2.4.js"></script>
<!-- <link rel="stylesheet" type="text/css" href="./style/bulma.min.css"> -->
<link rel="stylesheet" type="text/css" href="style/bulma-new-style/bulma.min.css">
<title>My App</title>
<script>
// Load and register pre-caching Service Worker
if ('serviceWorker' in navigator) {
window.addEventListener('load', function () {
navigator.serviceWorker.register('service-worker.js', {
scope: '/',
});
});
}
// Redux assumes `process.env.NODE_ENV` exists in the ES module build.
// https://github.com/reactjs/redux/issues/2907
window.process = {
env: {
NODE_ENV: 'dev'
}
};
window.params = null;
</script>
<style>
* {
margin: 0;
padding: 0;
}
body {
margin: 0;
min-height: 100vh;
}
</style>
</head>
<body>
<my-app unresolved></my-app>
<noscript>
Please enable JavaScript to view this website.
</noscript>
<!-- Load webcomponents-loader.js to check and load any polyfills your browser needs -->
<script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js"></script>
<script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<!-- <script>
console.log('-11');
let doCu = document//(document.currentScript || document._currentScript).ownerDocument;
console.log(doCu);
console.log(document);
var refScript = document.getElementsByTagName("script")[0];
window.addEventListener('WebComponentsReady', function componentsReady(e) {
window.removeEventListener("WebComponentsReady", componentsReady, false);
// imports are loaded and elements have been registered
const script = document.createElement("script");
script.setAttribute('src','src/my-app.js')
script.setAttribute('type','module')
script.setAttribute('crossorigin','')
script.setAttribute('defer','')
// console.log(script);
// console.log(refScript);
refScript.parentNode.insertBefore(script, refScript);
});
</script> -->
<script defer type="module" src="src/my-app.js" crossorigin></script>
</body>
</html>