-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (81 loc) · 3.44 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="generator" content="Acquisio PWA Starter Kit">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
<title>Acquisio Help Center</title>
<meta name="description" content="Acquisio Help Center">
<base href="/">
<link rel="icon" href="images/icons/favicon.ico">
<link rel="shortcut icon" sizes="32x32" href="/images/icons/favicon-32x32.png">
<meta name="theme-color" content="#ffffff">
<link rel="manifest" href="/manifest.json">
<!-- Add to homescreen for Chrome on Android. Fallback for manifest.json -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="Acquisio Help Center">
<!-- 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="Acquisio Help Center">
<!-- Homescreen icons -->
<link rel="apple-touch-icon" href="images/icons/icon-48x48.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/icons/icon-72x72.png">
<link rel="apple-touch-icon" sizes="96x96" href="images/icons/icon-96x96.png">
<link rel="apple-touch-icon" sizes="144x144" href="images/icons/icon-144x144.png">
<link rel="apple-touch-icon" sizes="192x192" href="images/icons/icon-192x192.png">
<!-- Tile icon for Windows 8 (144x144 + tile color) -->
<meta name="msapplication-TileImage" content="images/icons/icon-144x144.png">
<meta name="msapplication-TileColor" content="#3f51b5">
<meta name="msapplication-tap-highlight" content="no">
<script>
String.prototype.replaceAll = function (search, replacement) {
var target = this;
return target.replace(new RegExp(search, 'g'), replacement);
};
// setup Polymer options
// window.Polymer = {lazyRegister: true, dom: 'shady'};
/**
* [polymer-root-path]
*
* By default, we set `Polymer.rootPath` to the server root path (`/`).
* Leave this line unchanged if you intend to serve your app from the root
* path (e.g., with URLs like `my.domain/` and `my.domain/view1`).
*
* If you intend to serve your app from a non-root path (e.g., with URLs
* like `my.domain/my-app/` and `my.domain/my-app/view1`), edit this line
* to indicate the path from which you'll be serving, including leading
* and trailing slashes (e.g., `/my-app/`).
*/
window.Polymer = {rootPath: '/'};
// load pre-caching service worker
if ('serviceWorker' in navigator) {
window.addEventListener('load', function() {
navigator.serviceWorker.register('service-worker.js', {
scope: Polymer.rootPath,
});
});
}
</script>
<script src="lib/webcomponentsjs/webcomponents-loader.js"></script>
<script src="lib/lodash/lodash.js"></script>
<script src="node_modules/redux/dist/redux.js"></script>
<script src="node_modules/redux-thunk/dist/redux-thunk.js"></script>
<link rel="import" href="/src/app.html">
<style>
body {
margin: 0;
font-family: 'Roboto', 'Noto', sans-serif;
line-height: 1.5;
min-height: 100vh;
background-color: #eeeeee;
}
</style>
</head>
<body>
<my-app id="helpcenter" use-hash-routing></my-app>
<noscript>
Please enable JavaScript to view this website.
</noscript>
</body>
</html>