|
@@ -83,6 +83,7 @@ JitsiMeetJS.setLogLevel(JitsiMeetJS.logLevels.ERROR);
|
83
|
83
|
- USER_LEFT - a participant left conference. (parameters - id(string), user(JitsiParticipant))
|
84
|
84
|
- MESSAGE_RECEIVED - new text message received. (parameters - id(string), text(string), ts(number))
|
85
|
85
|
- DISPLAY_NAME_CHANGED - user has changed his display name. (parameters - id(string), displayName(string))
|
|
86
|
+ - SUBJECT_CHANGED - notifies that subject of the conference has changed (parameters - subject(string))
|
86
|
87
|
- LAST_N_ENDPOINTS_CHANGED - last n set was changed (parameters - array of ids of users)
|
87
|
88
|
- IN_LAST_N_CHANGED - passes boolean property that shows whether the local user is included in last n set of any other user or not. (parameters - boolean)
|
88
|
89
|
- CONFERENCE_JOINED - notifies the local user that he joined the conference successfully. (no parameters)
|
|
@@ -283,9 +284,10 @@ The object represents a conference. We have the following methods to control the
|
283
|
284
|
|
284
|
285
|
28. isStartVideoMuted() - check if video is muted on join
|
285
|
286
|
|
286
|
|
-29. sendFeedback(overallFeedback, detailedFeedback) - Sends the given feedback through CallStats if enabled.
|
287
|
|
- - overallFeedback an integer between 1 and 5 indicating the user feedback
|
288
|
|
- - detailedFeedback detailed feedback from the user. Not yet used
|
|
287
|
+29. setSubject(subject) - change subject of the conference
|
|
288
|
+ - subject - string new subject
|
|
289
|
+
|
|
290
|
+ Note: available only for moderator
|
289
|
291
|
|
290
|
292
|
JitsiTrack
|
291
|
293
|
======
|