In the following demo: http://documentcloud.github.com/backbone/examples/todos/index.html
the code has a few spots where _.bindAll(this,...) is used. Specifically it's used in the initialize function of both views. As far as I can tell it's necessary to do the following:
this.$('.todo-content').text(content);
But why would one one to do the above, when when can do:
$('.todo-content').text(content);
?