-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (28 loc) · 996 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Externe Referenz auf Bibliotheken zur Reduzierung der Projektgröße
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script type="text/javascript" src="http://d3js.org/d3.v3.min.js"></script>
-->
<title>Process-Visualization</title>
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
<script>
// add service worker file
if ('serviceWorker' in navigator) {
navigator.serviceWorker
.register('./static/service-worker.js')
.then(() => { console.log('Service Worker Registered') })
.catch(function errorHandler (e) {
console.warn('Could not register Service Worker', e.message)
console.warn('Mind service workers cannot run on http:// protocol')
})
}
</script>
</body>
</html>