blob: 5570df01e8bce4178350ab375562d101bacc551c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
(function() {
var canvas;
canvas = $('#processing');
$(window).on("load", function() {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
return console.log(canvas.width, canvas.height);
});
}).call(this);
|