Reputation: 1672
I am trying to configure my Jitsi meet so it will have filmstrip on mobile.
Please see ~/.jitsi-meet-cfg/web/custom-config.js below
But for whatever film strip view won’t appear on mobile even though it shows on desktop. What can I do to fix this? Thanks!
Upvotes: 0
Views: 721
Reputation: 419
For iframe was able to resolve it programmatically.
jitsiApi.addEventListener('filmstripDisplayChanged', (event: any) => {
if (!event.visible) {
jitsiApi.executeCommand('toggleFilmStrip');
}
});
Upvotes: 1