Skip to content

Commit

Permalink
pass through text track to the tech correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm1 committed May 5, 2017
1 parent 3e06426 commit 2a51896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/videojs5.hlsjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ function Html5HlsJS(source, tech) {
writable: false
});
el.addTextTrack = function() {
return tech.addTextTrack(arguments);
return tech.addTextTrack.apply(tech, arguments)
}
}

Expand Down

0 comments on commit 2a51896

Please sign in to comment.