-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpresenterRemote.html
More file actions
25 lines (25 loc) · 1.24 KB
/
Copy pathpresenterRemote.html
File metadata and controls
25 lines (25 loc) · 1.24 KB
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="es" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, viewport-fit=cover" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="theme-color" content="#0a0a0a" />
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self' 'wasm-unsafe-eval'; worker-src 'self' blob:; child-src 'self' blob:; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob:; font-src 'self' data:; connect-src 'self' ws: wss:"
/>
<title>PDF Presenter — Mando</title>
<style>
/* The remote is a single fixed screen: never let the page itself scroll or
rubber-band (pull-to-refresh reloads the mando mid-presentation). */
html, body, #presenter-root { height: 100%; margin: 0; overflow: hidden; overscroll-behavior: none; }
html, body { position: fixed; inset: 0; width: 100%; touch-action: manipulation; }
</style>
</head>
<body>
<div id="presenter-root"></div>
<script type="module" src="/src/presenter/remote/main.tsx"></script>
</body>
</html>