Prechádzať zdrojové kódy

fix(subtitle): a cue's endTime qeual next cues's startTime,track.activeCues prob

yuusora 3 rokov pred
rodič
commit
fa4835d750
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      src/js/subtitle.js

+ 1 - 1
src/js/subtitle.js

@@ -17,7 +17,7 @@ class Subtitle {
             const track = this.video.textTracks[0];
 
             track.oncuechange = () => {
-                const cue = track.activeCues[0];
+                const cue = track.activeCues[track.activeCues.length - 1];
                 this.container.innerHTML = '';
                 if (cue) {
                     const template = document.createElement('div');