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 055f87e1..834531a3 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 @@ -65,28 +65,28 @@ export class SessionComponent implements OnInit, OnDestroy { @ContentChild('panel', { read: TemplateRef }) panelTemplate: TemplateRef; @ContentChild('layout', { read: TemplateRef }) layoutTemplate: TemplateRef; /** - * Provides event notifications that fire when OpenVidu Room is created. + * Provides event notifications that fire when Room is created for the local participant. * */ @Output() onRoomCreated: 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(); /** - * Provides event notifications that fire when OpenVidu Room is disconnected. + * Provides event notifications that fire when Room is disconnected for the local participant. */ @Output() onRoomDisconnected: 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. */ @Output() onParticipantCreated: EventEmitter = new EventEmitter();