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) => {