wip: download single episode

This commit is contained in:
2025-07-24 16:24:21 -05:00
parent 56c5156380
commit a27fcf334a
7 changed files with 50 additions and 15 deletions

View File

@@ -3,6 +3,7 @@ export default class EpisodeContainer extends HTMLElement {
H265_CODECS = ['h265', 'h.265', 'x265', 'hevc']
options = [];
showTitle;
#episodeSelectorEl;
#resultsToggleBtnEl;
@@ -12,6 +13,7 @@ export default class EpisodeContainer extends HTMLElement {
constructor() {
super();
this.showTitle = this.getAttribute('show-title');
this.#resultsTableEl = this.querySelector('.results-container');
this.#resultsToggleBtnEl = this.querySelector('.dropdown-button');
this.#resultsCountBadgeEl = this.querySelector('.results-count-badge');