Webrtc Error Undefined Configuration
I have the following in my client.js file... window.onload = function() { var peerConnection; var peerConnectionConfig = { 'iceServers': [{ 'url': 'stun:stun.servic
Solution 1:
it is normal scoping issue, you have declared variables in window.onload
anonymous function and trying to access it directly in other functions, thus the error.
Post a Comment for "Webrtc Error Undefined Configuration"