Skip to content

Instantly share code, notes, and snippets.

@joubertnel
Created February 21, 2012 22:35
Show Gist options
  • Save joubertnel/1879499 to your computer and use it in GitHub Desktop.
Save joubertnel/1879499 to your computer and use it in GitHub Desktop.
prepare balls
prepare: function() {
var i;
var balls = [];
for (i=0; i < 100; i++) {
balls.push(new Demo.Ball({ number:i }));
}
this.set('balls', balls);
Demo.BallAreaView.create().appendTo('body');
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment