diff options
Diffstat (limited to 'demo/dist/demo.js')
-rw-r--r-- | demo/dist/demo.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/demo/dist/demo.js b/demo/dist/demo.js index 1a19f4cb..010fc138 100644 --- a/demo/dist/demo.js +++ b/demo/dist/demo.js @@ -19037,10 +19037,9 @@ typeof navigator === "object" && (function () { meta.set(track, { default: track.mode === 'showing' }); // Turn off native caption rendering to avoid double captions + // eslint-disable-next-line no-param-reassign - Object.assign(track, { - mode: 'hidden' - }); // Add event listener for cue changes + track.mode = 'hidden'; // Add event listener for cue changes on.call(_this, track, 'cuechange', function () { return captions.updateCues.call(_this); |