-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (42 loc) · 1010 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
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="/vite.svg"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta
name="description"
content="Portofolio Dimas Saputra"
/>
<title>Dimas Saputra</title>
</head>
<body>
<div id="app"><!--ssr-outlet--></div>
<script
type="module"
src="/src/entry-client.tsx"
></script>
<script>
window.onload = function () {
const pageTitle = document.title;
const attentionMessage = "Don't leave me:(";
document.addEventListener("visibilitychange", function (event) {
event.preventDefault();
const isPageActive = !document.hidden;
if (!isPageActive) {
document.title = attentionMessage;
} else {
document.title = pageTitle;
}
});
};
</script>
</body>
</html>