Skip to content

Double tap issues

When playing on some devices like tablets for example, double tapping, or pressing and holding can show the magnification tool, or it can select the entire game and show a contextual menu. To prevent these things from frustrating the players, we recommend adding this CSS to the body of your game:

-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;