Skip to content

Commit 4e1da4a

Browse files
authored
Update video-calling-javascript.md
1 parent 7ae1bbf commit 4e1da4a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

articles/communication-services/quickstarts/voice-video-calling/includes/video-calling/video-calling-javascript.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,10 @@ subscribeToRemoteVideoStream = async (remoteVideoStream) => {
316316

317317
/**
318318
* isReceiving API is currently an @alpha feature. Do not use in production.
319-
*/
319+
* To use this api please use 'alpha' release of Azure Communication Services Calling Web SDK.
320+
* Create a CSS class to style your loading spinner. Take a look at our
321+
* video calling quickstart, to see how to create a loading spinner.
322+
*
320323
let loadingSpinner = document.createElement('div');
321324
loadingSpinner.className = 'loading-spinner';
322325
remoteVideoStream.on('isReceivingChanged', () => {
@@ -334,6 +337,7 @@ subscribeToRemoteVideoStream = async (remoteVideoStream) => {
334337
console.error(e);
335338
}
336339
});
340+
*/
337341

338342
const createView = async () => {
339343
// Create a renderer view for the remote video stream.

0 commit comments

Comments
 (0)