2022-01-26 16:01:12 +01:00
|
|
|
<div id="layout" class="bounds">
|
2022-02-03 17:08:23 +01:00
|
|
|
<div
|
|
|
|
class="OT_root OT_publisher"
|
|
|
|
id="localUser"
|
2022-02-07 10:43:21 +01:00
|
|
|
*ngFor="let stream of localParticipant | connections"
|
|
|
|
[ngClass]="{ OV_small: !stream.streamManager?.stream?.videoActive }"
|
2022-02-03 17:08:23 +01:00
|
|
|
>
|
2022-02-11 13:18:50 +01:00
|
|
|
<ng-container *ngTemplateOutlet="streamTemplate; context: { $implicit: stream }"></ng-container>
|
2022-02-03 17:08:23 +01:00
|
|
|
</div>
|
2022-01-26 16:01:12 +01:00
|
|
|
|
2022-02-03 17:08:23 +01:00
|
|
|
<div
|
2022-02-07 10:43:21 +01:00
|
|
|
*ngFor="let stream of remoteParticipants | connections"
|
2022-02-03 17:08:23 +01:00
|
|
|
class="OT_root OT_publisher"
|
|
|
|
id="remote-participant"
|
2022-02-07 10:43:21 +01:00
|
|
|
[ngClass]="{ OV_small: !stream.streamManager?.stream?.videoActive }"
|
2022-02-03 17:08:23 +01:00
|
|
|
>
|
2022-02-11 13:18:50 +01:00
|
|
|
<ng-container *ngTemplateOutlet="streamTemplate; context: { $implicit: stream }"></ng-container>
|
2022-02-03 17:08:23 +01:00
|
|
|
</div>
|
2022-01-26 16:01:12 +01:00
|
|
|
</div>
|