Flock example: fix small bug.

This commit is contained in:
Jonathan Puckey 2011-04-28 21:18:10 +02:00
parent c0febab6c1
commit be7ccdbe17

View file

@ -282,7 +282,8 @@
// Resize the document, whenever the window is resized,
window.onresize = function(event) {
size = document.size = [window.innerWidth, window.innerHeight];
document.size = [window.innerWidth, window.innerHeight];
size = document.size;
heartPath.position = document.bounds.center;
document.redraw();
}