We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bd50c9 commit 07d8884Copy full SHA for 07d8884
offering.html
@@ -12,7 +12,7 @@
12
13
<body>
14
15
-<input type="checkbox" onclick="mute()">mute microphone</input>
+<input type="checkbox" checked onclick="mute()">mute microphone</input>
16
17
<video id="calleevideo" controls></video>
18
<div id="chatlog" class="chatlog"></div>
offering.js
@@ -7,6 +7,7 @@ var localStream;
7
navigator.mediaDevices.getUserMedia({ video: false, audio: true })
8
.then(function(stream) {
9
localStream = stream;
10
+ mute()
11
// localvideo.srcObject = stream;
// localvideo.play();
}).catch(function(err) {
0 commit comments