From d670bf7229df3c4edcb84124c659178b5d8ee08e Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Sun, 22 Dec 2024 21:02:30 -0500 Subject: let's experiment with sticky --- templates/page.tmpl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'templates/page.tmpl') 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 /* 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); -- cgit v1.2.3