We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 434b9a7 commit 4b3e724Copy full SHA for 4b3e724
client/webrtc.js
@@ -2,7 +2,7 @@ var localVideo;
2
var remoteVideo;
3
var peerConnection;
4
var peerConnectionConfig = {'iceServers': [{'url': 'stun:stun.services.mozilla.com'}, {'url': 'stun:stun.l.google.com:19302'}]};
5
-
+
6
navigator.getUserMedia = navigator.getUserMedia || navigator.mozGetUserMedia || navigator.webkitGetUserMedia;
7
window.RTCPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
8
window.RTCIceCandidate = window.RTCIceCandidate || window.mozRTCIceCandidate || window.webkitRTCIceCandidate;
@@ -17,7 +17,7 @@ function pageReady() {
17
18
var constraints = {
19
video: true,
20
- audio: true,
+ audio: true,
21
};
22
23
if(navigator.getUserMedia) {
0 commit comments