Minor bug fix in r4388, had to change pc_config variable to pcConfig for apprtc demo.

R=fischman@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/1856004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@4389 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
vikasmarwaha@webrtc.org 2013-07-23 23:13:35 +00:00
parent 59fb7a60f2
commit b63c29f48c

View File

@ -125,7 +125,7 @@
function createPeerConnection() {
// For FF, use Mozilla STUN server.
if (webrtcDetectedBrowser === "firefox") {
pc_config = {"iceServers":[{"url":"stun:stun.services.mozilla.com"}]};
pcConfig = {"iceServers":[{"url":"stun:stun.services.mozilla.com"}]};
}
try {
// Create an RTCPeerConnection via the polyfill (adapter.js).