blob: 72ea9747558c4a3014ad88644e4497a3d7e054af (
plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
<!doctype html>
<!--
* Pointless Viewer, a web-based Beamer presentation viewer
* Copyright (C) 2018 Pacien TRAN-GIRARD
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<html>
<head>
<meta charset="utf-8">
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="pointless/viewer/viewer.css">
<noscript>
<style type="text/css">#fileSelect { display: none; }</style>
</noscript>
<title>Pointless Viewer</title>
</head>
<body>
<canvas id="screen" class="centered"></canvas>
<div id="welcomeScreen" class="centered">
<header>
<h1>Pointless Viewer</h1>
<span id="offlineCapable">(available offline)</span>
</header>
<div>
<p>This viewer accepts double-width PDF presentations of the following shape:</p>
<table>
<tr>
<td>SLIDES</td>
<td>NOTES</td>
</tr>
</table>
<p>
(L<sup>A</sup>T<sub>E</sub>X-Beamer users may use
<code>\setbeameroption{show notes on second screen=right}</code>)
</p>
<p id="warning" class="warning">
<noscript>A web browser with JavaScript support is required to use this application.</noscript>
</p>
<div id="fileSelect">
<p>
Please select a PDF file to load.
Slides will be opened in a new window.
</p>
<input id="fileInput" type="file" multiple="false"/>
</div>
</div>
<div>
<ul>
<li><a href="https://pacien.org">© 2018 Pacien</a></li>
<li><a href="https://github.com/pacien/pointless-viewer/issues">Bug tracker</a></li>
<li><a href="https://cgit.pacien.net/public/apps/pointless-viewer/">Source repository</a></li>
<li><a href="https://mozilla.github.io/pdf.js/">Powered by PDF.js</a></li>
</ul>
</div>
</div>
<div id="timer" class="notification"></div>
<div id="message" class="notification"></div>
<script type="text/javascript" src="pointless/pdfjs/pdf.js"></script>
<script type="text/javascript" src="pointless/viewer/screen/timer.js"></script>
<script type="text/javascript" src="pointless/viewer/screen/screen.js"></script>
<script type="text/javascript" src="pointless/viewer/stage/actions.js"></script>
<script type="text/javascript" src="pointless/viewer/stage/stage.js"></script>
<script type="text/javascript" src="pointless/viewer/presentation.js"></script>
<script type="text/javascript" src="pointless/viewer/viewer.js"></script>
<script type="text/javascript" src="pointless/viewer/init.js"></script>
</body>
</html>
|