update comment
Signed-off-by: Timo K <toger5@hotmail.de>
This commit is contained in:
parent
03cf7ca698
commit
872b7f5110
1 changed files with 2 additions and 4 deletions
|
@ -293,8 +293,7 @@ function switchVisibleContainers(): void {
|
||||||
function toggleConferenceVisibility(inConference: boolean): void {
|
function toggleConferenceVisibility(inConference: boolean): void {
|
||||||
document.getElementById("jitsiContainer")!.style.visibility = inConference ? "unset" : "hidden";
|
document.getElementById("jitsiContainer")!.style.visibility = inConference ? "unset" : "hidden";
|
||||||
// Video rooms have a separate UI for joining, so they should never show our join button
|
// Video rooms have a separate UI for joining, so they should never show our join button
|
||||||
document.getElementById("joinButtonContainer")!.style.visibility =
|
document.getElementById("joinButtonContainer")!.style.visibility = inConference ? "hidden" : "unset";
|
||||||
inConference ? "hidden" : "unset";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function skipToJitsiSplashScreen(): void {
|
function skipToJitsiSplashScreen(): void {
|
||||||
|
@ -450,8 +449,7 @@ async function joinConference(audioInput?: string | null, videoInput?: string |
|
||||||
|
|
||||||
// Video channel widgets need some more tailored config options
|
// Video channel widgets need some more tailored config options
|
||||||
if (isVideoChannel) {
|
if (isVideoChannel) {
|
||||||
// Ensure that we skip Jitsi Meet's native prejoin screen, for
|
// We don't skip jitsi's prejoin screen for video rooms.
|
||||||
// deployments that have it enabled
|
|
||||||
options.configOverwrite!.prejoinConfig = { enabled: true };
|
options.configOverwrite!.prejoinConfig = { enabled: true };
|
||||||
// Use a simplified set of toolbar buttons
|
// Use a simplified set of toolbar buttons
|
||||||
options.configOverwrite!.toolbarButtons = ["microphone", "camera", "tileview", "hangup"];
|
options.configOverwrite!.toolbarButtons = ["microphone", "camera", "tileview", "hangup"];
|
||||||
|
|
Loading…
Add table
Reference in a new issue