Skip to content

Instantly share code, notes, and snippets.

@greggman
Created September 24, 2014 06:57
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 greggman/7d9cf12b3cf174e5125e to your computer and use it in GitHub Desktop.
Save greggman/7d9cf12b3cf174e5125e to your computer and use it in GitHub Desktop.
function resize() {
var width = canvas.clientWidth;
var height = canvas.clientHeight;
if (canvas.width != width ||
canvas.height != height) {
canvas.width = width;
canvas.height = height;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment