Skip to content

Commit

Permalink
update dist
Browse files Browse the repository at this point in the history
  • Loading branch information
mangui committed Nov 11, 2017
1 parent 044f93d commit 8405aac
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 9 deletions.
6 changes: 2 additions & 4 deletions dist/hls.js
Original file line number Diff line number Diff line change
Expand Up @@ -14039,9 +14039,7 @@ var WebVTTParser = {
// Convert byteArray into string, replacing any somewhat exotic linefeeds with "\n", then split on that character.
var re = /\r\n|\n\r|\n|\r/g;
// Uint8Array.prototype.reduce is not implemented in IE11
var vttLines = Object(id3["b" /* utf8ArrayToStr */])(Array.prototype.reduce.call(new Uint8Array(vttByteArray), function (raw, vttByte) {
return raw + String.fromCharCode(vttByte);
}, '')).trim().replace(re, '\n').split('\n');
var vttLines = Object(id3["b" /* utf8ArrayToStr */])(new Uint8Array(vttByteArray)).trim().replace(re, '\n').split('\n');

var cueTime = '00:00.000';
var mpegTs = 0;
Expand Down Expand Up @@ -15139,7 +15137,7 @@ var hls_Hls = function () {
hls__createClass(Hls, null, [{
key: 'version',
get: function get() {
return "0.8.6";
return "0.8.7";
}
}, {
key: 'Events',
Expand Down
2 changes: 1 addition & 1 deletion 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 8405aac

Please sign in to comment.