Guest User

Untitled

a guest
May 26th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. function startup() {
  2. const el = document.getElementsByTagName("canvas")[ 0 ];
  3. el.addEventListener("touchstart", handleStart, false);
  4. el.addEventListener("touchend", handleEnd, false);
  5. el.addEventListener("touchcancel", handleCancel, false);
  6. el.addEventListener("touchmove", handleMove, false);
  7. log("initialized.");
  8. }
Add Comment
Please, Sign In to add comment