mirror of https://github.com/OpenVidu/openvidu.git
20 lines
626 B
HTML
20 lines
626 B
HTML
<div id="layout" class="layout">
|
|
<div
|
|
class="OT_root OT_publisher"
|
|
id="localUser"
|
|
*ngFor="let stream of localParticipant | streams"
|
|
[ngClass]="{ OV_small: !stream.streamManager?.stream?.videoActive }"
|
|
>
|
|
<ng-container *ngTemplateOutlet="streamTemplate; context: { $implicit: stream }"></ng-container>
|
|
</div>
|
|
|
|
<div
|
|
*ngFor="let stream of remoteParticipants | streams"
|
|
class="OT_root OT_publisher"
|
|
id="remote-participant"
|
|
[ngClass]="{ OV_small: !stream.streamManager?.stream?.videoActive }"
|
|
>
|
|
<ng-container *ngTemplateOutlet="streamTemplate; context: { $implicit: stream }"></ng-container>
|
|
</div>
|
|
</div>
|