Skip to content

Commit

Permalink
update dist
Browse files Browse the repository at this point in the history
  • Loading branch information
mangui committed Jul 18, 2017
1 parent 7a07add commit 6a60fee
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 9 deletions.
10 changes: 8 additions & 2 deletions dist/hls.js
Original file line number Diff line number Diff line change
Expand Up @@ -6031,7 +6031,13 @@ var TimelineController = function (_EventHandler) {
// cue can appear more than once in different vtt files.
// This avoid showing duplicated cues with same timecode and text.
if (!currentTrack.cues.getCueById(cue.id)) {
currentTrack.addCue(cue);
try {
currentTrack.addCue(cue);
} catch (err) {
var textTrackCue = new window.TextTrackCue(cue.startTime, cue.endTime, cue.text);
textTrackCue.id = cue.id;
currentTrack.addCue(textTrackCue);
}
}
});
hls.trigger(_events2.default.SUBTITLE_FRAG_PROCESSED, { success: true, frag: frag });
Expand Down Expand Up @@ -10523,7 +10529,7 @@ var Hls = function () {
key: 'version',
get: function get() {
// replaced with browserify-versionify transform
return '0.7.10';
return '0.7.11';
}
}, {
key: 'Events',
Expand Down
6 changes: 3 additions & 3 deletions dist/hls.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/hls.light.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/hls.light.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/hls.light.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/hls.min.js

Large diffs are not rendered by default.

0 comments on commit 6a60fee

Please sign in to comment.