Slide 47
Slide 47 text
!
!
AppRouter = Backbone.Router.extend({
!
routes: {
'#/party': 'startTheParty',
'#/party/uninvite/:animal': 'revokePartyRights'
},
revokePartyRights: function(animal){
model = partyAnimalCollection.find(animal);
model.destroy();
$("#animal-party").remove();
},
!
startTheParty: function(animal){
var view = new PartyView({ collection : partyAnimalCollection });
partyAnimalCollection.fetch();
view.render();
}
!
});
!