-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathraw-data.html
More file actions
36 lines (31 loc) · 943 Bytes
/
raw-data.html
File metadata and controls
36 lines (31 loc) · 943 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
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Follow Toots - Raw Data</title>
<link rel="stylesheet" href="src/style.css">
</head>
<body>
<nav id="nav"></nav>
<h1>Follow Toots - Raw Data</h1>
<p>
This page is intended for development use only (and is therefore linked
in the navigation bar only on localhost).
It essentially shows the persistent data.
</p>
<p>
Often the browser's storage inspector is sufficient or even more helpful
than this page.
OTOH, there are situations where searching through this page is useful.
</p>
<p>
Data in the output below is not updated automatically.
You have to press the
<button id="update">Update</button>
button (or reload this page) to see the latest data.
</p>
<pre id="output"></pre>
<script type="module" src="src/nav.ts"></script>
<script type="module" src="src/rawData.ts"></script>
</body>
</html>