fix videojs
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Roy Olav Purser 2023-07-07 20:54:20 +02:00
parent 269ece679f
commit 7c3cae3b39
Signed by: roypur
GPG Key ID: 90142918D5E59AD3

View File

@ -27,7 +27,7 @@
const canPlayType = (canPlayTypeRaw === "maybe") || (canPlayTypeRaw === "probably");
if(canPlayType) {
const Button = videojs.getComponent("Button");
const DownloadButton = videojs.extend(videojs.getComponent("Component"), {
class DownloadButton extends videojs.getComponent("Component") {
createEl: () => {
const elem = document.createElement("a");
elem.href = info.download;
@ -38,7 +38,7 @@
elem.classList.add("vjs-big-download");
return elem;
}
})
}
const cbutton = {};
cbutton.clickHandler = (ev) => {