add quotes in js
This commit is contained in:
parent
3d2c1609bc
commit
e28fcf1ad4
@ -13,10 +13,10 @@
|
|||||||
let player = videojs("player");
|
let player = videojs("player");
|
||||||
let source = {};
|
let source = {};
|
||||||
source.type = ctype;
|
source.type = ctype;
|
||||||
source.src = {{ stream }};
|
source.src = "{{ stream }}";
|
||||||
player.src(source);
|
player.src(source);
|
||||||
}
|
}
|
||||||
xhr.open("HEAD", {{ stream }}, true);
|
xhr.open("HEAD", "{{ stream }}", true);
|
||||||
xhr.send();
|
xhr.send();
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
Loading…
Reference in New Issue
Block a user