From 04b85d3619327804cc0aa928d3412a868a4c52e5 Mon Sep 17 00:00:00 2001 From: jojo aquino Date: Thu, 3 Apr 2025 22:39:42 +0100 Subject: [PATCH] set participant name --- .../EnotaryoPH.Web/Pages/Participant/VideoCall/Room.cshtml | 2 +- .../EnotaryoPH.Web/Pages/Participant/VideoCall/Room.cshtml.js | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/EnotaryoPH/EnotaryoPH.Web/Pages/Participant/VideoCall/Room.cshtml b/EnotaryoPH/EnotaryoPH.Web/Pages/Participant/VideoCall/Room.cshtml index a51a119..e81d207 100644 --- a/EnotaryoPH/EnotaryoPH.Web/Pages/Participant/VideoCall/Room.cshtml +++ b/EnotaryoPH/EnotaryoPH.Web/Pages/Participant/VideoCall/Room.cshtml @@ -127,7 +127,7 @@ diff --git a/EnotaryoPH/EnotaryoPH.Web/Pages/Participant/VideoCall/Room.cshtml.js b/EnotaryoPH/EnotaryoPH.Web/Pages/Participant/VideoCall/Room.cshtml.js index 491844f..8506af8 100644 --- a/EnotaryoPH/EnotaryoPH.Web/Pages/Participant/VideoCall/Room.cshtml.js +++ b/EnotaryoPH/EnotaryoPH.Web/Pages/Participant/VideoCall/Room.cshtml.js @@ -20,6 +20,7 @@ control_participantListGroup = document.getElementById("ParticipantListGroup"), control_selfieImage = document.getElementById("SelfieImage"), control_identificationImage = document.getElementById("IdentificationImage"), + control_signatoryName = document.getElementById("SignatoryName"), x = 1; let participants = JSON.parse(control_participants.value); @@ -254,7 +255,7 @@ if (!participant) { return; } - + control_signatoryName.textContent = participant.DisplayName; let selfieUrl = jfa.utilities.routing.getCurrentURLWithHandler("SelfieImage"); selfieUrl.searchParams.append("meetingRoomUserID", participant.RoomUserID);