qubaji

Results 1 comments of qubaji

I did something like this to work around the issue: ``` let wasFullscreen = false; window.removeEventListener('resize', carousel.resizeHandler); window.addEventListener('resize', function() { const isFullscreen = window.screenTop === 0 && window.screenY === 0;...