Skip to content

Instantly share code, notes, and snippets.

@rformato
Created February 22, 2014 20:54
Show Gist options
  • Select an option

  • Save rformato/9162265 to your computer and use it in GitHub Desktop.

Select an option

Save rformato/9162265 to your computer and use it in GitHub Desktop.
var hc,wc;
var resize = function() {
hc = $(window).height()-5;
wc = Math.max($(window).width(),800)-5;
$("#canvas").attr("width",wc).attr("height",hc);
}
$(window).resize(resize);
resize();
var c = $("#canvas")[0].getContext("2d");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment