Skip to content

Instantly share code, notes, and snippets.

@strayblues
Created November 19, 2018 20:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save strayblues/dec32cd592a9e158302a7ce53620733f to your computer and use it in GitHub Desktop.
Save strayblues/dec32cd592a9e158302a7ce53620733f to your computer and use it in GitHub Desktop.
function init() {
//...code...
canvas.onpointermove = handleMouseMove;
canvas.onpointerdown = handleMouseDown;
canvas.onpointerup = stopDrawing;
canvas.onpointerout = stopDrawing;
document.querySelector(".clear").onclick = clearCanvas;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment