diff options
author | Sacha Chua <sacha@sachachua.com> | 2024-12-22 21:02:30 -0500 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2024-12-22 21:02:30 -0500 |
commit | d670bf7229df3c4edcb84124c659178b5d8ee08e (patch) | |
tree | 289dddd1df956ccb19389b4c0fb3c619a837b147 /templates | |
parent | 6cdb2258e2200ff45a66c2c87c6605c796600621 (diff) | |
download | emacsconf-wiki-d670bf7229df3c4edcb84124c659178b5d8ee08e.tar.xz emacsconf-wiki-d670bf7229df3c4edcb84124c659178b5d8ee08e.zip |
let's experiment with sticky
Diffstat (limited to 'templates')
-rw-r--r-- | templates/page.tmpl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/page.tmpl b/templates/page.tmpl index 05fade46..4d8a8d86 100644 --- a/templates/page.tmpl +++ b/templates/page.tmpl @@ -416,9 +416,11 @@ Last edited <TMPL_VAR MTIME> /* videoType: mainVideo, qanda */ function addStickyVideo(videoType) { const transcriptDiv = document.querySelector('.transcript-' + videoType); - const video = document.querySelector('.vid.' + videoType); + const video = document.querySelector('.vid.' + videoType + ' video'); if (!video || !transcriptDiv) return; - if (transcriptDiv.querySelector('video')) return; // already has it + if (transcriptDiv.querySelector('.vid')) + transcriptDiv.querySelector('.vid').remove(); + // already has it // TODO: Make a copy of the video and place it at the start of the btranscript div, positioned to the left, and sticky, but only on large screens. const videoCopy = video.cloneNode(true); transcriptDiv.prepend(videoCopy); |