Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import API from "renderer/lib/api"; export const initFullScreenDetector = async () => { API.events.app.isFullScreenChanged.subscribe((_, isFullScreen) => handleFullScreen(isFullScreen) ); handleFullScreen(await API.app.getIsFullScreen()); }; const handleFullScreen = (isFullScreen: boolean) => { document.body.className = `Platform__${API.platform} ${ isFullScreen ? "full-screen" : "" }`; }; |