Skip to content

Commit

Permalink
fixed application name in connect call.
Browse files Browse the repository at this point in the history
  • Loading branch information
EricDavies committed Jan 15, 2014
1 parent 4bcb72f commit f111f99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/easyrtc_client_tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Here is an example initialization function:

function my_init() {
easyrtc.setRoomOccupantListener( roomListener);
easyrtc.easyApp("Company Chat Line", "self", ["caller"],
easyrtc.easyApp("Company_Chat_Line", "self", ["caller"],
function(myId) {
console.log("My easyrtcid is " + myId);
}
Expand Down Expand Up @@ -190,7 +190,7 @@ Here is the complete HTML and Javascript for this solution.
The mylogic.js file:
function my_init() {
easyrtc.setRoomOccupantListener( loggedInListener);
easyrtc.easyApp("Company Chat Line", "self", ["caller"],
easyrtc.easyApp("Company_Chat_Line", "self", ["caller"],
function(myId) {
console.log("My easyrtcid is " + myId);
}
Expand Down

0 comments on commit f111f99

Please sign in to comment.