Skip to content

Commit 4b3e724

Browse files
committed
remove trailing spaces
1 parent 434b9a7 commit 4b3e724

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/webrtc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ var localVideo;
22
var remoteVideo;
33
var peerConnection;
44
var peerConnectionConfig = {'iceServers': [{'url': 'stun:stun.services.mozilla.com'}, {'url': 'stun:stun.l.google.com:19302'}]};
5-
5+
66
navigator.getUserMedia = navigator.getUserMedia || navigator.mozGetUserMedia || navigator.webkitGetUserMedia;
77
window.RTCPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
88
window.RTCIceCandidate = window.RTCIceCandidate || window.mozRTCIceCandidate || window.webkitRTCIceCandidate;
@@ -17,7 +17,7 @@ function pageReady() {
1717

1818
var constraints = {
1919
video: true,
20-
audio: true,
20+
audio: true,
2121
};
2222

2323
if(navigator.getUserMedia) {

0 commit comments

Comments
 (0)