This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { CallClient, CallAgent } from "@azure/communication-calling"; | |
| import { AzureCommunicationTokenCredential } from '@azure/communication-common'; | |
| const connectButton = document.getElementById('connect-button'); | |
| const disconnectButton = document.getElementById('disconnect-button'); | |
| const callStateElement = document.getElementById('call-state'); | |
| const destinationGroupElement = document.getElementById('destination-group-input'); | |
| const participantListElement = document.getElementById('ParticipantList'); | |
| let call; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Learn ASC Day 13 - Managing the Participant List</title> | |
| </head> | |
| <body> | |
| <h2>Learn ASC Day 13 - Managing the Participant List</h2> | |
| <p>Call state <span style="font-weight: bold" id="call-state">-</span></p> | |
| <input id="destination-group-input" type="text" placeholder="Microsoft Teams meeting join URL (https://teams.microsoft.com/l/meetup-join/....)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { CallClient, CallAgent } from "@azure/communication-calling"; | |
| import { AzureCommunicationTokenCredential } from '@azure/communication-common'; | |
| const connectButton = document.getElementById('connect-button'); | |
| const disconnectButton = document.getElementById('disconnect-button'); | |
| const callStateElement = document.getElementById('call-state'); | |
| const destinationGroupElement = document.getElementById('destination-group-input'); | |
| const screenShareStartButton = document.getElementById('shareScreenStart-button'); | |
| const screenShareStopButton = document.getElementById('shareScreenStop-button'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Learn ASC Day 12 - Presenting Screen Share Content</title> | |
| </head> | |
| <body> | |
| <h2>Learn ASC Day 12 - Presenting Screen Share Content</h2> | |
| <p>Call state <span style="font-weight: bold" id="call-state">-</span></p> | |
| <input id="destination-group-input" type="text" placeholder="Microsoft Teams meeting join URL (https://teams.microsoft.com/l/meetup-join/....)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { CallClient, CallAgent, DeviceManager, LocalVideoStream, Renderer } from "@azure/communication-calling"; | |
| import { AzureCommunicationTokenCredential } from '@azure/communication-common'; | |
| const connectButton = document.getElementById('connect-button'); | |
| const disconnectButton = document.getElementById('disconnect-button'); | |
| const callStateElement = document.getElementById('call-state'); | |
| const destinationUserElement = document.getElementById('destination-user-input'); | |
| const startVideoButton = document.getElementById('startvideo-button'); | |
| const stopVideoButton = document.getElementById('stopvideo-button'); | |
| const videoDeviceSelect = document.getElementById('selectVideoDevice'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Learn ASC Day 11 - Changing Devices</title> | |
| </head> | |
| <body> | |
| <h2>Learn ASC Day 11 - Changing Devices</h2> | |
| <p>Call state <span style="font-weight: bold" id="call-state">-</span></p> | |
| <input id="destination-user-input" type="text" placeholder="Microsoft Teams meeting join URL (https://teams.microsoft.com/l/meetup-join/....)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { CallClient, CallAgent, DeviceManager, LocalVideoStream, Renderer } from "@azure/communication-calling"; | |
| import { AzureCommunicationTokenCredential } from '@azure/communication-common'; | |
| const connectButton = document.getElementById('connect-button'); | |
| const disconnectButton = document.getElementById('disconnect-button'); | |
| const callStateElement = document.getElementById('call-state'); | |
| const destinationUserElement = document.getElementById('destination-user-input'); | |
| const startVideoButton = document.getElementById('startvideo-button'); | |
| const stopVideoButton = document.getElementById('stopvideo-button'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Learn ASC Day 10 - Showing and Hiding Video</title> | |
| </head> | |
| <body> | |
| <h2>Learn ASC Day 10 - Showing and Hiding Video</h2> | |
| <p>Call state <span style="font-weight: bold" id="call-state">-</span></p> | |
| <input id="destination-user-input" type="text" placeholder="ACS User ID to call" value="8:echo123" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { CallClient, CallAgent } from "@azure/communication-calling"; | |
| import { AzureCommunicationTokenCredential } from '@azure/communication-common'; | |
| const connectButton = document.getElementById('connect-button'); | |
| const disconnectButton = document.getElementById('disconnect-button'); | |
| const callStateElement = document.getElementById('call-state'); | |
| const destinationUserElement = document.getElementById('destination-user-input'); | |
| const muteButton = document.getElementById('mute-button'); | |
| const unmuteButton = document.getElementById('unmute-button'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Learn ASC Day 9 - Muting and Unmuting</title> | |
| </head> | |
| <body> | |
| <h2>Learn ASC Day 9 - Muting and Unmuting</h2> | |
| <p>Call state <span style="font-weight: bold" id="call-state">-</span></p> | |
| <input id="destination-user-input" type="text" placeholder="ACS User ID to call" value="8:echo123" |