diff options
Diffstat (limited to '')
-rw-r--r-- | templates/page.tmpl | 28 |
1 files changed, 22 insertions, 6 deletions
diff --git a/templates/page.tmpl b/templates/page.tmpl index c8becae7..1b694bd5 100644 --- a/templates/page.tmpl +++ b/templates/page.tmpl @@ -38,16 +38,32 @@ </TMPL_UNLESS> <script> - // @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL-3.0 + // @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL-3.0-or-later /* - This script enables wiki editors to create anchor tags with the class "time-link" - that will be parsed for seeking to specific time stamps in the main video on a page. - The tag should look like this: + SeekToTime - simple script to add video time jump functionality to timestamp links + Copyright (C) 2020 Grant Shangreaux - <a href="#mainVideo" class="time-link">mm:ss</a> + 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 could be extended to accept hours in the time stamp as well, but currently does not. + 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/>. + + This script enables wiki editors to create anchor tags with the class "time-link" + that will be parsed for seeking to specific time stamps in the main video on a page. + The tag should look like this: + + <a href="#mainVideo" class="time-link">mm:ss</a> + + This could be extended to accept hours in the time stamp as well, but currently does not. */ var mainVideo; var timestamps; |