diff options
author | pacien | 2021-04-04 06:05:55 +0200 |
---|---|---|
committer | pacien | 2021-04-04 06:05:55 +0200 |
commit | 65b25584ecd7b3fb1793feefd0eee5c6b513cdf5 (patch) | |
tree | a6adc677958c8b91b84cdf3e5a1cb818007228dc /index.html | |
parent | 3208851e93d429b6e82c9792122c3dfb09eb236d (diff) | |
download | beamer-viewer-65b25584ecd7b3fb1793feefd0eee5c6b513cdf5.tar.gz |
timer: add pause and reset buttons
GitHub: closes #12
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 17 |
1 files changed, 11 insertions, 6 deletions
@@ -2,18 +2,18 @@ | |||
2 | 2 | ||
3 | <!-- | 3 | <!-- |
4 | * Beamer Viewer, a web-based PDF presentation viewer | 4 | * Beamer Viewer, a web-based PDF presentation viewer |
5 | * Copyright (C) 2018 Pacien TRAN-GIRARD | 5 | * Copyright (C) 2021 Pacien TRAN-GIRARD |
6 | * | 6 | * |
7 | * This program is free software: you can redistribute it and/or modify | 7 | * This program is free software: you can redistribute it and/or modify |
8 | * it under the terms of the GNU Affero General Public License as | 8 | * it under the terms of the GNU Affero General Public License as |
9 | * published by the Free Software Foundation, either version 3 of the | 9 | * published by the Free Software Foundation, either version 3 of the |
10 | * License, or (at your option) any later version. | 10 | * License, or (at your option) any later version. |
11 | * | 11 | * |
12 | * This program is distributed in the hope that it will be useful, | 12 | * This program is distributed in the hope that it will be useful, |
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | * GNU Affero General Public License for more details. | 15 | * GNU Affero General Public License for more details. |
16 | * | 16 | * |
17 | * You should have received a copy of the GNU Affero General Public License | 17 | * You should have received a copy of the GNU Affero General Public License |
18 | * along with this program. If not, see <https://www.gnu.org/licenses/>. | 18 | * along with this program. If not, see <https://www.gnu.org/licenses/>. |
19 | --> | 19 | --> |
@@ -70,7 +70,7 @@ | |||
70 | 70 | ||
71 | <div> | 71 | <div> |
72 | <ul> | 72 | <ul> |
73 | <li><a href="https://pacien.org">© 2018 Pacien</a></li> | 73 | <li><a href="https://pacien.org">© 2021 Pacien</a></li> |
74 | <li><a href="https://github.com/pacien/beamer-viewer/issues">Bug tracker</a></li> | 74 | <li><a href="https://github.com/pacien/beamer-viewer/issues">Bug tracker</a></li> |
75 | <li><a href="https://cgit.pacien.net/public/apps/beamer-viewer/">Source repository</a></li> | 75 | <li><a href="https://cgit.pacien.net/public/apps/beamer-viewer/">Source repository</a></li> |
76 | <li><a href="https://mozilla.github.io/pdf.js/">Powered by PDF.js</a></li> | 76 | <li><a href="https://mozilla.github.io/pdf.js/">Powered by PDF.js</a></li> |
@@ -79,7 +79,12 @@ | |||
79 | </div> | 79 | </div> |
80 | </div> | 80 | </div> |
81 | 81 | ||
82 | <div id="timer" class="notification"></div> | 82 | <div id="timer" class="notification hidden"> |
83 | <span id="timer-pause" class="timer-action" title="Pause/resume timer">⏱︎</span> | ||
84 | <span id="timer-value"></span> | ||
85 | <span id="timer-reset" class="timer-action" title="Reset timer">↺</span> | ||
86 | </div> | ||
87 | |||
83 | <div id="message" class="notification"></div> | 88 | <div id="message" class="notification"></div> |
84 | 89 | ||
85 | <script type="text/javascript" src="beamer/pdfjs/pdf.js"></script> | 90 | <script type="text/javascript" src="beamer/pdfjs/pdf.js"></script> |