# HG changeset patch # User drewp@bigasterisk.com # Date 1733523611 28800 # Node ID 046673b1cc24766818558106d05b8a1c4ccc15fe # Parent c2c51aae3e312162ae2067f4d9f5f2a1a5a256f9 dead code diff -r c2c51aae3e31 -r 046673b1cc24 src/VideoPage.ts --- a/src/VideoPage.ts Fri Dec 06 09:27:10 2024 -0800 +++ b/src/VideoPage.ts Fri Dec 06 14:20:11 2024 -0800 @@ -140,7 +140,6 @@ webRelPath=${video.webRelPath} thumbRelPath=${this.thumbSrc(video)} title="${video.label}" - manifest="${PATH_PREFIX}/files${video.webDataPath}" >`; } diff -r c2c51aae3e31 -r 046673b1cc24 src/VideoSection.ts --- a/src/VideoSection.ts Fri Dec 06 09:27:10 2024 -0800 +++ b/src/VideoSection.ts Fri Dec 06 14:20:11 2024 -0800 @@ -5,7 +5,6 @@ @customElement("video-section") export class VideoSection extends LitElement { - @property({ type: String }) manifest: string | undefined; @property({ type: String }) webRelPath: string | undefined; @property({ type: String }) thumbRelPath: string | undefined; @property({ type: String }) title: string = "(unknown)"; @@ -31,15 +30,10 @@ this.dispatchEvent( new CustomEvent("playVideo", { detail: { - manifest: this.manifest, webRelPath: this.webRelPath, zoomFrom: "my location", }, }) ); } - updated() { - // const el=this.querySelector("#video") - // console.log(el.clientWidth); - } }