var player = new Clappr.Player({ source: "https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8",
parentId: "#player",
plugins: [LevelSelector],
width: "100%", height: "100%",
autoPlay: true,
mute: false,
playback: { playInline: true } });
function openModal(){
var currentUrl = window.location.href;
var embedTemplate = '';
document.getElementById("embedCodeText").value = embedTemplate;
document.getElementById("embedModal").style.display = "flex"; }
function closeModal(){ document.getElementById("embedModal").style.display = "none"; }
function copyAndClose(){
var copyText = document.getElementById("embedCodeText");
copyText.select();
navigator.clipboard.writeText(copyText.value);
alert("Copied!");
closeModal(); }