Remove the Academy films
Test and deploy / test-and-deploy (push) Successful in 1m3s

The generated videos weren't good enough — pull the films card, its
styles, and the video assets. The service-worker hardening stays: media
paths bypass the cache (Range/206 responses) and only full 200 responses
are cached.

Co-Authored-By: Claude Fable 5 <[email protected]>
This commit is contained in:
2026-08-11 19:02:03 -04:00
co-authored by Claude Fable 5
parent cc735aba82
commit e9f2393c96
8 changed files with 0 additions and 69 deletions
-4
View File
@@ -97,9 +97,6 @@ function renderMenu() {
function openLesson(track, lesson, index) {
current = { track, lesson, index };
$("academy-menu").classList.add("hidden");
$("academy-films")?.classList.add("hidden");
// Pause any playing film so it doesn't run (and download) behind the lesson.
for (const video of document.querySelectorAll("#academy-films video")) video.pause();
$("academy-player").classList.remove("hidden");
renderSlide();
}
@@ -109,7 +106,6 @@ function closeLesson() {
current = null;
$("academy-player").classList.add("hidden");
$("academy-menu").classList.remove("hidden");
$("academy-films")?.classList.remove("hidden");
renderMenu(); // reflect fresh progress
}