|
@@ -73,6 +73,7 @@ const events = {
|
73
|
73
|
'video-availability-changed': 'videoAvailabilityChanged',
|
74
|
74
|
'video-mute-status-changed': 'videoMuteStatusChanged',
|
75
|
75
|
'screen-sharing-status-changed': 'screenSharingStatusChanged',
|
|
76
|
+ 'dominant-speaker-changed': 'dominantSpeakerChanged',
|
76
|
77
|
'subject-change': 'subjectChange',
|
77
|
78
|
'suspend-detected': 'suspendDetected',
|
78
|
79
|
'tile-view-changed': 'tileViewChanged'
|
|
@@ -521,13 +522,13 @@ export default class JitsiMeetExternalAPI extends EventEmitter {
|
521
|
522
|
* {{
|
522
|
523
|
* jid: jid //the jid of the participant
|
523
|
524
|
* }}
|
524
|
|
- * {@code video-conference-joined} - receives event notifications about the
|
|
525
|
+ * {@code videoConferenceJoined} - receives event notifications about the
|
525
|
526
|
* local user has successfully joined the video conference.
|
526
|
527
|
* The listener will receive object with the following structure:
|
527
|
528
|
* {{
|
528
|
529
|
* roomName: room //the room name of the conference
|
529
|
530
|
* }}
|
530
|
|
- * {@code video-conference-left} - receives event notifications about the
|
|
531
|
+ * {@code videoConferenceLeft} - receives event notifications about the
|
531
|
532
|
* local user has left the video conference.
|
532
|
533
|
* The listener will receive object with the following structure:
|
533
|
534
|
* {{
|
|
@@ -539,6 +540,12 @@ export default class JitsiMeetExternalAPI extends EventEmitter {
|
539
|
540
|
* {{
|
540
|
541
|
* on: on //whether screen sharing is on
|
541
|
542
|
* }}
|
|
543
|
+ * {@code dominantSpeakerChanged} - receives event notifications about
|
|
544
|
+ * change in the dominant speaker.
|
|
545
|
+ * The listener will receive object with the following structure:
|
|
546
|
+ * {{
|
|
547
|
+ * id: participantId //participantId of the new dominant speaker
|
|
548
|
+ * }}
|
542
|
549
|
* {@code suspendDetected} - receives event notifications about detecting suspend event in host computer.
|
543
|
550
|
* {@code readyToClose} - all hangup operations are completed and Jitsi Meet
|
544
|
551
|
* is ready to be disposed.
|