Twitch.Player.setFullscreen on Edge

Hey there, I am using the twitch player embed
anyway I wanted a user to be able to click a button of my own making on the page to set fullscreen
so I have something along the lines of
const twitchPlayer = new Twitch.Player();
twitchPlayer.addEventListener(Twitch.Player.ONLINE, () => {
twitchPlayer.setFullscreen(true);
});

and … this even works on the vast majority of new browsers, however there is a new browser that it doesn’t work on, and that is edge,
in edge when I run that javascript the twitch controls flip like they are about to go full screen however no fullscreen occurs.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.