t-rex-runner icon indicating copy to clipboard operation
t-rex-runner copied to clipboard

“Press Space to start” text doesn’t disappear on mobile

Open mygizli04 opened this issue 5 years ago • 1 comments

mygizli04 avatar Nov 02 '18 22:11 mygizli04

You could try this:

document.ontouchstart = function(evt) {
  if (document.getElementById("messageBox") != null) {
    document.getElementById("messageBox").style.visibility="hidden";
  }
};

DesignyourCode avatar Oct 01 '20 10:10 DesignyourCode