-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (29 loc) · 982 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>WKWebView Cache Demo</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<script src="./service-worker.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"></script>
<script src="./demo.js?v=1"></script>
<link rel="manifest" href="manifest.json">
<link rel="stylesheet" href="./demo.css?v=1" type="text/css">
</head>
<body>
<div>
<label>Enter some text</label>
<input id="uiTxt" value="Version 1">
</div>
<div>
<button id="uiGen">Generate PDF</button>
</div>
<div>
<label>Randomize file name</label>
<input type="checkbox" id="uiRnd">
</div>
</body>
</html>