This repository was archived by the owner on Dec 9, 2024. It is now read-only.

Description
For some reason, games that used to work on Safari IOS mobile devices can no longer be played while they are within an iframe. JavaScript methods like onpointerdown are completely disabled within the iframe. Visit js-bytebase.com to see the problem on one of the games.
Another issue with the iframe is that it gets selected when you hold down for too long. The following CSS was added to try to solve this problem but unfortunately, it didn't make any difference.
iframe {
-webkit-user-select: none;
user-select: none
}
This issue is not a problem on computers or mobile devices that don't run on IOS.