Closed troygoode closed 12 years ago
You can test this out by changing self.todos.push(newTodo); to self.todos.unshift(newTodo); and back in the Todos example. Should work for issue #31.
self.todos.push(newTodo);
self.todos.unshift(newTodo);
k - i'm going to merge and add a couple little changes
You can test this out by changing
self.todos.push(newTodo);
toself.todos.unshift(newTodo);
and back in the Todos example. Should work for issue #31.