-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshare.html
More file actions
25 lines (25 loc) · 785 Bytes
/
share.html
File metadata and controls
25 lines (25 loc) · 785 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Saving to YCopy…</title>
<link rel="stylesheet" href="styles.css" />
<meta name="theme-color" content="#1b1f3b" />
</head>
<body class="share">
<main class="card">
<h1>Saving…</h1>
<p>If you stay on this screen, refresh the app and your share will appear.</p>
<a href="index.html">Go to clips</a>
</main>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker
.register('service-worker.js', { updateViaCache: 'none' })
.then((registration) => registration.update())
.catch(() => {});
}
</script>
</body>
</html>