Guest User

Untitled

a guest
Jul 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. if (!init) {
  2. pc.createOffer().then(function(offer) {
  3. log("offer created! ")
  4. return pc.setLocalDescription(offer);
  5. })
  6. .then(function() {
  7. log("offer send! ")
  8. window.mySocket.send(JSON.stringify(pc.localDescription));
  9. })
  10. .catch(function(reason) {
  11. log(reason)
  12. });
  13. }
Add Comment
Please, Sign In to add comment