Store chat username on send

This commit is contained in:
Gabe Kangas
2020-06-02 10:38:13 -07:00
parent 4cb282040b
commit 94fabf56a8
3 changed files with 7 additions and 5 deletions

View File

@@ -118,7 +118,7 @@
else if (video.canPlayType("application/vnd.apple.mpegurl")) {
video.src = videoSrc;
video.addEventListener("loadedmetadata", function () {
video.play();
document.getElementById('video').play();
});
}
</script>
@@ -127,7 +127,7 @@
var app = new Vue({
el: "#app",
data: {
streamStatus: "Hello Vue!",
streamStatus: "",
},
});
</script>