diff options
author | zrose584 <57181548+zrose584@users.noreply.github.com> | 2020-09-12 10:20:43 +0200 |
---|---|---|
committer | zrose584 <57181548+zrose584@users.noreply.github.com> | 2020-09-12 10:21:12 +0200 |
commit | 081058c07e10a4123efcce813918873887eb78c5 (patch) | |
tree | 2bfe1836435620a6da5398ed857d820af5c54e16 /youtube/static/js/transcript-table.js | |
parent | 8222b6205b337730b964a27744699edfaed46b29 (diff) | |
download | yt-local-081058c07e10a4123efcce813918873887eb78c5.tar.lz yt-local-081058c07e10a4123efcce813918873887eb78c5.tar.xz yt-local-081058c07e10a4123efcce813918873887eb78c5.zip |
default to last textTrack
Diffstat (limited to 'youtube/static/js/transcript-table.js')
-rw-r--r-- | youtube/static/js/transcript-table.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube/static/js/transcript-table.js b/youtube/static/js/transcript-table.js index 235b1e4..6b57911 100644 --- a/youtube/static/js/transcript-table.js +++ b/youtube/static/js/transcript-table.js @@ -87,6 +87,7 @@ window.addEventListener('DOMContentLoaded', function() { option.appendChild(text(tt.label)); select_tt.appendChild(option); } + select_tt.selectedIndex = getDefaultTranscriptTrackIdx(); select_tt.addEventListener("change", loadCues); divR.appendChild(select_tt); @@ -96,7 +97,7 @@ window.addEventListener('DOMContentLoaded', function() { divR.appendChild(table_tt); tts.addEventListener("change", (e) => { - console.log(e); + // console.log(e); var idx = getActiveTranscriptTrackIdx(); // sadly not provided by 'e' if (tts[idx].mode == "showing") { select_tt.selectedIndex = idx; |