//backbone
fetchCollection : function(){
var that = this;
return this.collection.fetch().always(function(){
console.log(that, this); // view, window
})
}
fetchCollection : function(){
var that = this;
return this.collection.fetch().always(function(){
console.log(that, this); // view, window
}.bind(this)
}