danielschimkat / website

Privatewebsite
0 stars 0 forks source link

Touch hide messageBox #2

Closed danielschimkat closed 2 years ago

danielschimkat commented 2 years ago

MessageBox doesn't hide after touchinput on mobile.

danielschimkat commented 2 years ago

This code works: tested with Google Chrome WebDevTools.

document.addEventListener("touchstart", function(e) 
{
    document.onkeydown({ keyCode: 32 });
});