-
Notifications
You must be signed in to change notification settings - Fork 0
/
ios_index.html
32 lines (28 loc) · 3.23 KB
/
ios_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>
<head>
<title>iOS test</title>
</head>
<body>
<input type="button" id="download" value="Download file" />
</body>
<script type="text/javascript">
const dlButton = document.getElementById('download');
const data = [37,80,68,70,45,49,46,49,13,10,37,194,165,194,177,195,171,13,10,13,10,49,32,48,32,111,98,106,13,10,32,32,60,60,32,47,84,121,112,101,32,47,67,97,116,97,108,111,103,13,10,32,32,32,32,32,47,80,97,103,101,115,32,50,32,48,32,82,13,10,32,32,62,62,13,10,101,110,100,111,98,106,13,10,13,10,50,32,48,32,111,98,106,13,10,32,32,60,60,32,47,84,121,112,101,32,47,80,97,103,101,115,13,10,32,32,32,32,32,47,75,105,100,115,32,91,51,32,48,32,82,93,13,10,32,32,32,32,32,47,67,111,117,110,116,32,49,13,10,32,32,32,32,32,47,77,101,100,105,97,66,111,120,32,91,48,32,48,32,51,48,48,32,49,52,52,93,13,10,32,32,62,62,13,10,101,110,100,111,98,106,13,10,13,10,51,32,48,32,111,98,106,13,10,32,32,60,60,32,32,47,84,121,112,101,32,47,80,97,103,101,13,10,32,32,32,32,32,32,47,80,97,114,101,110,116,32,50,32,48,32,82,13,10,32,32,32,32,32,32,47,82,101,115,111,117,114,99,101,115,13,10,32,32,32,32,32,32,32,60,60,32,47,70,111,110,116,13,10,32,32,32,32,32,32,32,32,32,32,32,60,60,32,47,70,49,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,60,32,47,84,121,112,101,32,47,70,111,110,116,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,83,117,98,116,121,112,101,32,47,84,121,112,101,49,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,66,97,115,101,70,111,110,116,32,47,84,105,109,101,115,45,82,111,109,97,110,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,62,62,13,10,32,32,32,32,32,32,32,32,32,32,32,62,62,13,10,32,32,32,32,32,32,32,62,62,13,10,32,32,32,32,32,32,47,67,111,110,116,101,110,116,115,32,52,32,48,32,82,13,10,32,32,62,62,13,10,101,110,100,111,98,106,13,10,13,10,52,32,48,32,111,98,106,13,10,32,32,60,60,32,47,76,101,110,103,116,104,32,53,57,32,62,62,13,10,115,116,114,101,97,109,13,10,32,32,66,84,13,10,32,32,32,32,47,70,49,32,49,56,32,84,102,13,10,32,32,32,32,48,32,48,32,84,100,13,10,32,32,32,32,40,72,101,108,108,111,32,87,111,114,108,100,41,32,84,106,13,10,32,32,69,84,13,10,101,110,100,115,116,114,101,97,109,13,10,101,110,100,111,98,106,13,10,13,10,120,114,101,102,13,10,48,32,53,13,10,48,48,48,48,48,48,48,48,48,48,32,54,53,53,51,53,32,102,13,10,48,48,48,48,48,48,48,48,50,49,32,48,48,48,48,48,32,110,13,10,48,48,48,48,48,48,48,48,56,54,32,48,48,48,48,48,32,110,13,10,48,48,48,48,48,48,48,49,57,53,32,48,48,48,48,48,32,110,13,10,48,48,48,48,48,48,48,52,57,48,32,48,48,48,48,48,32,110,13,10,116,114,97,105,108,101,114,13,10,32,32,60,60,32,32,47,82,111,111,116,32,49,32,48,32,82,13,10,32,32,32,32,32,32,47,83,105,122,101,32,53,13,10,32,32,62,62,13,10,115,116,97,114,116,120,114,101,102,13,10,54,48,57,13,10,37,37,69,79,70,13,10];
const blob = new Blob(data, { type: "application/pdf" });
dlButton.addEventListener('click', function(e) {
const reader = new FileReader();
reader.onload = () => {
const link = document.createElement('a');
link.style.visibility = 'hidden';
link.target = '_blank';
link.href = reader.result;
link.download = "minimal.pdf";
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
};
reader.readAsDataURL(blob);
});
</script>
</html>