add text to cast button

This commit is contained in:
Roy Olav Purser 2021-05-12 15:10:59 +02:00
parent 85465b2f3a
commit 6d5baafecc
Signed by: roypur
GPG Key ID: E14D26A036F21656

View File

@ -6,7 +6,7 @@ document.addEventListener("DOMContentLoaded", () => {
if(bodies.length === 1) {
let body = bodies[0];
let cast = document.createElement("button");
body.appendChild(cast);
cast.innerHtml = "Google Cast";
let cjs = new Castjs();
cast.addEventListener("click", () => {
if(cjs.available) {
@ -18,6 +18,7 @@ document.addEventListener("DOMContentLoaded", () => {
let video = document.createElement("video");
video.className = "video-js";
body.appendChild(video);
body.appendChild(cast);
let ctype = xhr.getResponseHeader("Content-Type");
console.log(ctype);
let options = {};