You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/communication-services/quickstarts/voice-video-calling/includes/custom-teams-endpoint/voice-video-calling-cte-javascript.md
let userAccessToken =document.getElementById('user-access-token');
122
118
let calleeTeamsUserId =document.getElementById('callee-teams-user-id');
123
-
let teamsThreadId =document.getElementById('teams-thread-id');
124
-
let initializeCallAgentButton =document.getElementById('initialize-call-agent');
119
+
let initializeCallAgentButton =document.getElementById('initialize-teams-call-agent');
125
120
let startCallButton =document.getElementById('start-call-button');
126
121
let hangUpCallButton =document.getElementById('hangup-call-button');
127
122
let acceptCallButton =document.getElementById('accept-call-button');
@@ -131,20 +126,20 @@ let connectedLabel = document.getElementById('connectedLabel');
131
126
let remoteVideoContainer =document.getElementById('remoteVideoContainer');
132
127
let localVideoContainer =document.getElementById('localVideoContainer');
133
128
/**
134
-
* Create an instance of CallClient. Initialize a CallAgent instance with a CommunicationUserCredential via created CallClient. CallAgent enables us to make outgoing calls and receive incoming calls.
129
+
* Create an instance of CallClient. Initialize a TeamsCallAgent instance with a CommunicationUserCredential via created CallClient. TeamsCallAgent enables us to make outgoing calls and receive incoming calls.
135
130
* You can then use the CallClient.getDeviceManager() API instance to get the DeviceManager.
0 commit comments