From ebfc1a4f6bde29f08f753c0ee93799e63b06b0bd Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Mon, 22 Nov 2021 16:41:59 -0500 Subject: Add transcript link --- templates/page.tmpl | 9 +++++++++ templates/vid.md | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) (limited to 'templates') diff --git a/templates/page.tmpl b/templates/page.tmpl index d5ec57bf..6df947c6 100644 --- a/templates/page.tmpl +++ b/templates/page.tmpl @@ -295,6 +295,15 @@ Last edited // @license magnet:?xt=urn:btih:90dc5c0be029de84e523b9b3922520e79e0e6f08&dn=cc0.txt txt CC0-1.0 // Copyright (C) 2021 Sacha Chua if (document.querySelector('.times')) { document.querySelector('.times').prepend('Your local time: ~ ' + (new Date(document.querySelector('.times').getAttribute('start')).toLocaleString()) + ' to ~ ' + (new Date(document.querySelector('.times').getAttribute('end')).toLocaleString()) + "\n"); } + if (document.querySelector('a[name=transcript]')) { + var transcriptLink = document.createElement('a'); + transcriptLink.setAttribute('href', '#transcript'); + transcriptLink.textContent = 'View transcript'; + var resources = document.querySelector('video[id="mainVideo"]').closest('.vid').querySelector('.resources'); + var transcriptDiv = document.createElement('div'); +transcriptDiv.appendChild(transcriptLink) + if (resources) { resources.prepend(transcriptDiv); } + } // @license-end diff --git a/templates/vid.md b/templates/vid.md index 6e6850b1..b50349c4 100644 --- a/templates/vid.md +++ b/templates/vid.md @@ -7,7 +7,7 @@

Your browser does not support the video tag, please download the video instead.

-- cgit v1.2.3