Fix typo in hlsPlayback script
This commit is contained in:
parent
c0274af0c3
commit
ffd9843197
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ function playVideo(overlay) {
|
||||||
});
|
});
|
||||||
} else if (video.canPlayType('application/vnd.apple.mpegurl')) {
|
} else if (video.canPlayType('application/vnd.apple.mpegurl')) {
|
||||||
video.src = url;
|
video.src = url;
|
||||||
video.addEventListened('canplay', function() {
|
video.addEventListener('canplay', function() {
|
||||||
video.play();
|
video.play();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue