From eab4d5e302c707a93959cc11b15345e6a7519a21 Mon Sep 17 00:00:00 2001 From: mkelvers Date: Mon, 6 Jul 2026 20:47:10 +0200 Subject: [PATCH] feat: export episodeElements helper --- static/player/episodes/titles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/player/episodes/titles.ts b/static/player/episodes/titles.ts index 0a8f84c5..27c50ad0 100644 --- a/static/player/episodes/titles.ts +++ b/static/player/episodes/titles.ts @@ -2,7 +2,7 @@ import { state } from "../state"; type EpisodeTitle = { number: number; title: string }; -const episodeElements = (): HTMLElement[] => { +export const episodeElements = (): HTMLElement[] => { const elements: HTMLElement[] = []; for (const container of [state.elements.episodeGrid, state.elements.episodeList]) { container?.querySelectorAll("[data-episode-id]").forEach((element) => {