feat(rmeets): enable shared video & music toolbar buttons
Add sharedvideo and sharedmusic to Jitsi toolbar config in both the full-screen view and folk-jitsi-room component. Also set disableThirdPartyRequests to false so the features aren't blocked. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
a4a800a498
commit
64ba4c1f1f
|
|
@ -121,6 +121,7 @@ class FolkJitsiRoom extends HTMLElement {
|
||||||
"camera", "microphone", "desktop", "hangup",
|
"camera", "microphone", "desktop", "hangup",
|
||||||
"raisehand", "tileview", "toggle-camera",
|
"raisehand", "tileview", "toggle-camera",
|
||||||
"fullscreen", "select-background",
|
"fullscreen", "select-background",
|
||||||
|
"sharedvideo", "sharedmusic",
|
||||||
],
|
],
|
||||||
// Hide panels that add stray close (×) buttons
|
// Hide panels that add stray close (×) buttons
|
||||||
disableChat: false,
|
disableChat: false,
|
||||||
|
|
|
||||||
|
|
@ -521,13 +521,14 @@ routes.get("/:room", (c) => {
|
||||||
prejoinConfig: { enabled: false },
|
prejoinConfig: { enabled: false },
|
||||||
prejoinPageEnabled: false,
|
prejoinPageEnabled: false,
|
||||||
disableDeepLinking: true,
|
disableDeepLinking: true,
|
||||||
disableThirdPartyRequests: true,
|
disableThirdPartyRequests: false,
|
||||||
enableClosePage: false,
|
enableClosePage: false,
|
||||||
toolbarButtons: [
|
toolbarButtons: [
|
||||||
"microphone","camera","desktop","hangup",
|
"microphone","camera","desktop","hangup",
|
||||||
"raisehand","tileview","toggle-camera",
|
"raisehand","tileview","toggle-camera",
|
||||||
"fullscreen","chat","settings",
|
"fullscreen","chat","settings",
|
||||||
"participants-pane","select-background",
|
"participants-pane","select-background",
|
||||||
|
"sharedvideo","sharedmusic",
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
interfaceConfigOverwrite: {
|
interfaceConfigOverwrite: {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue