summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2017-05-15 09:07:11 +0200
committerJonas Smedegaard <dr@jones.dk>2017-05-15 09:07:11 +0200
commit43e6c768b6b6cd2afd92ff1239ea45b23786e387 (patch)
tree094fae6bf822073540d8eb6d8e0eed3357723c45
parent413bdfe8cf09a4922149f06a18e1d44511f14aea (diff)
Fix use ap name as element id.
-rw-r--r--js/app/live-video-test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/app/live-video-test.js b/js/app/live-video-test.js
index 987d09e..e4a3e73 100644
--- a/js/app/live-video-test.js
+++ b/js/app/live-video-test.js
@@ -36,7 +36,7 @@ Janus.init({callback: function() {
}
},
onremotestream: function(stream) {
- Janus.attachMediaStream(document.getElementById('live-video'), stream);
+ Janus.attachMediaStream(document.getElementById('live-video-test'), stream);
},
});
},