diff --git a/docs/samples/browser-plugin-meetings/app.js b/docs/samples/browser-plugin-meetings/app.js index f7ea76c1610..61685af017c 100644 --- a/docs/samples/browser-plugin-meetings/app.js +++ b/docs/samples/browser-plugin-meetings/app.js @@ -250,6 +250,7 @@ const createMeetingSelectElm = document.querySelector('#createMeetingDest'); const createMeetingActionElm = document.querySelector('#create-meeting-action'); const meetingsJoinDeviceElm = document.querySelector('#meetings-join-device'); const meetingsJoinPinElm = document.querySelector('#meetings-join-pin'); +const meetingsGuestName = document.querySelector('#meetings-guest-name'); const meetingsJoinModeratorElm = document.querySelector('#meetings-join-moderator'); const meetingsListCollectElm = document.querySelector('#meetings-list-collect'); const meetingsListMsgElm = document.querySelector('#meetings-list-msg'); @@ -464,12 +465,13 @@ function joinMeeting({withMedia, withDevice} = {withMedia: false, withDevice: fa const joinOptions = { pin: meetingsJoinPinElm.value, + alias: meetingsGuestName.value, moderator: meetingsJoinModeratorElm.checked, moveToResource: false, resourceId, receiveTranscription: receiveTranscriptionOption }; - + const joinMeetingNow = () => { meeting.join(joinOptions) .then(() => { // eslint-disable-line diff --git a/docs/samples/browser-plugin-meetings/index.html b/docs/samples/browser-plugin-meetings/index.html index a853ef43f7f..365076a1157 100644 --- a/docs/samples/browser-plugin-meetings/index.html +++ b/docs/samples/browser-plugin-meetings/index.html @@ -245,6 +245,7 @@