Skip to content

Commit df0297e

Browse files
author
Kevin Le Goff
committed
Fix indentation on the isReceiving property
1 parent 655d8a2 commit df0297e

File tree

1 file changed

+16
-18
lines changed

1 file changed

+16
-18
lines changed

articles/communication-services/how-tos/calling-sdk/includes/manage-video/manage-video-web.md

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -491,25 +491,23 @@ const isAvailable: boolean = remoteVideoStream.isAvailable;
491491
```
492492

493493
- `isReceiving`:
494-
- Informs the application if remote video stream data is being received or not. All scenarios listed assumes the remote partipant is
495-
sharing its video
496-
497-
- The flag moves to `false` in the following scenarios:
498-
- A remote participant who is on mobile browser brings the browser app to the background.
499-
- A remote participant or the user receiving the video has network issue that affects video quality drastically.
500-
- A remote participant who is On macOS/iOS Safari clicks on "Pause" from their address bar.
501-
- A remote participant has a network disconnection.
502-
- A remote particpant on mobile kills or terminate the browser.
503-
- A remote particpant on mobile or desktop locks his device. This scenario applies also if the remote particpant is on a desktop computer and it goes to sleep.
504-
505-
- The flag moves to `true` in the following scenarios:
506-
- A remote participant whos is on mobile browser and has his browser backgrounded brings it back to foreground.
507-
- A remote participant who is On macOS/iOS Safari clicks on "Resume" from their address bar after having paused its video.
508-
- A remote participant has a reconnects to the network after a temporary disconnection.
509-
- A remote participant on mobile unlock his device and return to the call on his mobile browser.
494+
- Informs the application if remote video stream data is being received or not.
495+
- The flag moves to `false` in the following scenarios:
496+
- A remote participant who is on mobile browser brings the browser app to the background.
497+
- A remote participant or the user receiving the video has network issue that affects video quality drastically.
498+
- A remote participant who is On macOS/iOS Safari clicks on "Pause" from their address bar.
499+
- A remote participant has a network disconnection.
500+
- A remote particpant on mobile kills or terminate the browser.
501+
- A remote particpant on mobile or desktop locks his device. This scenario applies also if the remote particpant is on a desktop computer and it goes to sleep.
502+
503+
- The flag moves to `true` in the following scenarios:
504+
- A remote participant whos is on mobile browser and has his browser backgrounded brings it back to foreground.
505+
- A remote participant who is On macOS/iOS Safari clicks on "Resume" from their address bar after having paused its video.
506+
- A remote participant has a reconnects to the network after a temporary disconnection.
507+
- A remote participant on mobile unlock his device and return to the call on his mobile browser.
510508

511-
- This feature improves the user experience for rendering remote video streams.
512-
- You can display a loading spinner over the remote video stream when isReceiving flag changes to false. You don't have to do a loading spinner, you can do anything you desire, but a loading spinner is the most common usage for better user experience.
509+
- This feature improves the user experience for rendering remote video streams.
510+
- You can display a loading spinner over the remote video stream when isReceiving flag changes to false. You don't have to do a loading spinner, you can do anything you desire, but a loading spinner is the most common usage for better user experience.
513511
```js
514512
const isReceiving: boolean = remoteVideoStream.isReceiving;
515513
```

0 commit comments

Comments
 (0)