Poliakoff
Poliakoff

Reputation: 1672

How to configure filmstrip on mobile for custom Jitsi instance?

I am trying to configure my Jitsi meet so it will have filmstrip on mobile.

Please see ~/.jitsi-meet-cfg/web/custom-config.js belowjitsi config

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

Answers (1)

Slava Gornostal
Slava Gornostal

Reputation: 419

For iframe was able to resolve it programmatically.

jitsiApi.addEventListener('filmstripDisplayChanged', (event: any) => {
                if (!event.visible) {
                    jitsiApi.executeCommand('toggleFilmStrip');
                }
            });

Upvotes: 1

Related Questions