aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/static
diff options
context:
space:
mode:
authorzrose584 <57181548+zrose584@users.noreply.github.com>2020-09-15 20:57:11 +0200
committerzrose584 <57181548+zrose584@users.noreply.github.com>2020-09-15 20:57:11 +0200
commit0830468bd13b59323f244978ae3e915bb715a949 (patch)
tree7d359db770753ce89e4a89d6b2d1511f23fb5aa9 /youtube/static
parentb3de26606dcdb374a98a494136d2c3f210fff838 (diff)
downloadyt-local-0830468bd13b59323f244978ae3e915bb715a949.tar.lz
yt-local-0830468bd13b59323f244978ae3e915bb715a949.tar.xz
yt-local-0830468bd13b59323f244978ae3e915bb715a949.zip
style transcript div
Diffstat (limited to 'youtube/static')
-rw-r--r--youtube/static/js/transcript-table.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/static/js/transcript-table.js b/youtube/static/js/transcript-table.js
index d0028f7..26d2948 100644
--- a/youtube/static/js/transcript-table.js
+++ b/youtube/static/js/transcript-table.js
@@ -103,7 +103,7 @@ window.addEventListener('DOMContentLoaded', function() {
let tts = Q("video").textTracks;
if (!tts.length) return;
- details_tt = Q("details#transcript-box");
+ details_tt = Q("details#transcript-details");
details_tt.addEventListener("toggle", () => {
if (details_tt.open) loadCues();
});