diff --git a/openvidu-components-angular/projects/openvidu-components-angular/src/lib/components/session/session.component.ts b/openvidu-components-angular/projects/openvidu-components-angular/src/lib/components/session/session.component.ts index 834531a3..b103a072 100644 --- a/openvidu-components-angular/projects/openvidu-components-angular/src/lib/components/session/session.component.ts +++ b/openvidu-components-angular/projects/openvidu-components-angular/src/lib/components/session/session.component.ts @@ -66,7 +66,6 @@ export class SessionComponent implements OnInit, OnDestroy { @ContentChild('layout', { read: TemplateRef }) layoutTemplate: TemplateRef; /** * Provides event notifications that fire when Room is created for the local participant. - * */ @Output() onRoomCreated: EventEmitter = new EventEmitter(); diff --git a/openvidu-components-angular/projects/openvidu-components-angular/src/lib/components/toolbar/toolbar.component.ts b/openvidu-components-angular/projects/openvidu-components-angular/src/lib/components/toolbar/toolbar.component.ts index 9c9697f8..95c82ec2 100644 --- a/openvidu-components-angular/projects/openvidu-components-angular/src/lib/components/toolbar/toolbar.component.ts +++ b/openvidu-components-angular/projects/openvidu-components-angular/src/lib/components/toolbar/toolbar.component.ts @@ -97,7 +97,7 @@ export class ToolbarComponent implements OnInit, OnDestroy, AfterViewInit { } /** - * This event is emitted when a participant leaves the room. + * This event is emitted when the local participant leaves the room. */ @Output() onParticipantLeft: EventEmitter = new EventEmitter(); diff --git a/openvidu-components-angular/projects/openvidu-components-angular/src/lib/components/videoconference/videoconference.component.ts b/openvidu-components-angular/projects/openvidu-components-angular/src/lib/components/videoconference/videoconference.component.ts index 859c0bb9..58d6ef27 100644 --- a/openvidu-components-angular/projects/openvidu-components-angular/src/lib/components/videoconference/videoconference.component.ts +++ b/openvidu-components-angular/projects/openvidu-components-angular/src/lib/components/videoconference/videoconference.component.ts @@ -199,34 +199,34 @@ export class VideoconferenceComponent implements OnDestroy, AfterViewInit { openviduAngularStreamTemplate: TemplateRef; /** - * Provides event notifications that fire when videconference is ready to received the token. + * Provides event notifications that fire when the local participant is ready to join to the room. * This event emits the participant name as data. */ @Output() onTokenRequested: EventEmitter = new EventEmitter(); /** - * Provides event notifications that fire when the participant is ready to join to the room. This event is only emitted when the prejoin page has been shown. + * Provides event notifications that fire when the local participant is ready to join to the room. + * This event is only emitted when the prejoin page has been shown. */ @Output() onReadyToJoin: EventEmitter = new EventEmitter(); /** - * This event is emitted when the room connection has been lost and the reconnection process has started. + * Provides event notifications that fire when Room is disconnected for the local participant. */ @Output() onRoomDisconnected: EventEmitter = new EventEmitter(); /** - * Provides event notifications that fire when OpenVidu Room is disconnected. + * Provides event notifications that fire when Room is being reconnected for the local participant. */ @Output() onRoomReconnecting: EventEmitter = new EventEmitter(); /** - * Provides event notifications that fire when OpenVidu Room is reconnected. + * Provides event notifications that fire when Room is reconnected for the local participant. */ @Output() onRoomReconnected: EventEmitter = new EventEmitter(); - /** - * This event is emitted when a participant leaves the room. + * This event is emitted when the local participant leaves the room. */ @Output() onParticipantLeft: EventEmitter = new EventEmitter(); @@ -334,13 +334,13 @@ export class VideoconferenceComponent implements OnDestroy, AfterViewInit { new EventEmitter(); /** - * Provides event notifications that fire when OpenVidu Room is created. + * Provides event notifications that fire when Room is created for the local participant. * It provides the {@link https://openvidu.io/latest/docs/getting-started/#room Room} payload as event data. */ @Output() onRoomCreated: EventEmitter = new EventEmitter(); /** - * Provides event notifications that fire when local participant is created. + * Provides event notifications that fire when local participant is created and connected to the Room. * It provides the {@link ParticipantModel} payload as event data. */ @Output() onParticipantCreated: EventEmitter = new EventEmitter();