-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
31 lines (30 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Chirp Messenger</title>
<meta name="description" content="Send and receive messages via audio">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="no">
<meta name="theme-color" content="#ffffff">
<link rel="manifest" href="manifest.json">
<link rel="shortcut icon" href="data:image/x-icon;" type="image/x-icon">
<link rel="stylesheet" href="index.css">
<script src="1.1.2/hyperapp.js"></script>
<script src="6.3.2/adapter.min.js"></script>
<script src="chirp-connect.js"></script>
<script defer src="index.js"></script>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.getRegistrations().then(function(registrations) {
for(let registration of registrations) {
registration.unregister()
}
})
}
</script>
</head>
<body>
</body>
</html>