mirror of https://github.com/calzoneman/sync.git
Add crossorigin attribute for custom media with text tracks
Mitigates #702
This commit is contained in:
parent
0885a619b9
commit
7c897d91db
|
@ -47,9 +47,16 @@ window.VideoJSPlayer = class VideoJSPlayer extends Player
|
|||
|
||||
loadPlayer: (data) ->
|
||||
waitUntilDefined(window, 'videojs', =>
|
||||
attrs =
|
||||
width: '100%'
|
||||
height: '100%'
|
||||
|
||||
if @mediaType == 'cm' and data.meta.textTracks
|
||||
attrs.crossorigin = 'anonymous'
|
||||
|
||||
video = $('<video/>')
|
||||
.addClass('video-js vjs-default-skin embed-responsive-item')
|
||||
.attr(width: '100%', height: '100%')
|
||||
.attr(attrs)
|
||||
removeOld(video)
|
||||
|
||||
@sources = sortSources(data.meta.direct)
|
||||
|
|
|
@ -509,11 +509,15 @@
|
|||
VideoJSPlayer.prototype.loadPlayer = function(data) {
|
||||
return waitUntilDefined(window, 'videojs', (function(_this) {
|
||||
return function() {
|
||||
var video;
|
||||
video = $('<video/>').addClass('video-js vjs-default-skin embed-responsive-item').attr({
|
||||
var attrs, video;
|
||||
attrs = {
|
||||
width: '100%',
|
||||
height: '100%'
|
||||
});
|
||||
};
|
||||
if (_this.mediaType === 'cm' && data.meta.textTracks) {
|
||||
attrs.crossorigin = 'anonymous';
|
||||
}
|
||||
video = $('<video/>').addClass('video-js vjs-default-skin embed-responsive-item').attr(attrs);
|
||||
removeOld(video);
|
||||
_this.sources = sortSources(data.meta.direct);
|
||||
if (_this.sources.length === 0) {
|
||||
|
|
Loading…
Reference in New Issue