Case change

This commit is contained in:
Martin D. 2015-03-08 21:58:43 -04:00
parent edc17cd1b4
commit 5fab3bdadc

View File

@ -4,7 +4,7 @@
var config: RTCConfiguration =
{ iceServers: [{ url: "stun.l.google.com:19302" }] };
var constraints: RTCMediaConstraints =
{ mandatory: { OfferToReceiveAudio: true, OfferToReceiveVideo: true } };
{ mandatory: { offerToReceiveAudio: true, offerToReceiveVideo: true } };
var peerConnection: RTCPeerConnection =
new RTCPeerConnection(config, constraints);