Skip to content

Commit

Permalink
UPDATE: minor fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
dimircea committed Jan 27, 2016
1 parent 22e52c3 commit 39539c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SimpleVideoChat/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<script src="lib/adapter.js"></script>
<script src="webrtc.js"></script>
<title>WebRTC Audio/Video-Chat</title>
<title>WebRTC Video-Chat</title>
</head>

<body>
Expand Down
4 changes: 2 additions & 2 deletions SimpleVideoChat/webrtc.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ function createAndSendAnswer() {
console.log(error);
}
);
}
;
};

function onIceCandidateHandler(evt) {
if (!evt || !evt.candidate) return;
wsc.send(JSON.stringify({"candidate": evt.candidate }));
Expand Down

0 comments on commit 39539c9

Please sign in to comment.