Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

If anyone needs it, it’s a quirk of the iframe sandboxing. Added tabindex=0 to the main content div, then in a script tag:

window.onload = () => { window.focus(); }; 
window.onclick = () => { window.focus(); };