|
|
|
@ -170,6 +170,7 @@ function changeParticipantNumber(APIInstance, number) { |
|
|
|
|
* configuration options defined in interface_config.js to be overridden. |
|
|
|
|
* @param {string} [options.jwt] - The JWT token if needed by jitsi-meet for |
|
|
|
|
* authentication. |
|
|
|
|
* @param {string} [options.lang] - The meeting's default language. |
|
|
|
|
* @param {string} [options.roomName] - The name of the room to join. |
|
|
|
|
* @returns {string} The URL. |
|
|
|
|
*/ |
|
|
|
@ -208,7 +209,8 @@ function parseArguments(args) { |
|
|
|
|
configOverwrite, |
|
|
|
|
interfaceConfigOverwrite, |
|
|
|
|
jwt, |
|
|
|
|
onload |
|
|
|
|
onload, |
|
|
|
|
lang |
|
|
|
|
] = args; |
|
|
|
|
|
|
|
|
|
return { |
|
|
|
@ -219,7 +221,8 @@ function parseArguments(args) { |
|
|
|
|
configOverwrite, |
|
|
|
|
interfaceConfigOverwrite, |
|
|
|
|
jwt, |
|
|
|
|
onload |
|
|
|
|
onload, |
|
|
|
|
lang |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
case 'object': // new arguments format
|
|
|
|
@ -280,6 +283,7 @@ export default class JitsiMeetExternalAPI extends EventEmitter { |
|
|
|
|
* configuration options defined in interface_config.js to be overridden. |
|
|
|
|
* @param {string} [options.jwt] - The JWT token if needed by jitsi-meet for |
|
|
|
|
* authentication. |
|
|
|
|
* @param {string} [options.lang] - The meeting's default language. |
|
|
|
|
* @param {string} [options.onload] - The onload function that will listen |
|
|
|
|
* for iframe onload event. |
|
|
|
|
* @param {Array<Object>} [options.invitees] - Array of objects containing |
|
|
|
@ -301,6 +305,7 @@ export default class JitsiMeetExternalAPI extends EventEmitter { |
|
|
|
|
configOverwrite = {}, |
|
|
|
|
interfaceConfigOverwrite = {}, |
|
|
|
|
jwt = undefined, |
|
|
|
|
lang = undefined, |
|
|
|
|
onload = undefined, |
|
|
|
|
invitees, |
|
|
|
|
devices, |
|
|
|
@ -314,6 +319,7 @@ export default class JitsiMeetExternalAPI extends EventEmitter { |
|
|
|
|
configOverwrite, |
|
|
|
|
interfaceConfigOverwrite, |
|
|
|
|
jwt, |
|
|
|
|
lang, |
|
|
|
|
roomName, |
|
|
|
|
devices, |
|
|
|
|
userInfo, |
|
|
|
|