milov.nl/iambald/110.html
I've taken to using
setTimeout(function(){tick(t+1);}, 55);
instead of
setTimeout('tick('+(t+1)+')', 55);
since it's less eval-esque and doesn't require escaping and messy parenthesizing.
Interaction design • webdevelopment • web art • photography
milov.nl/iambald/110.html
I've taken to using
setTimeout(function(){tick(t+1);}, 55);
instead of
setTimeout('tick('+(t+1)+')', 55);
since it's less eval-esque and doesn't require escaping and messy parenthesizing.
Bravo, Milo!