Skip to content

Instantly share code, notes, and snippets.

@codeschool-courses
Last active December 12, 2015 00:28
Show Gist options
  • Save codeschool-courses/4683932 to your computer and use it in GitHub Desktop.
Save codeschool-courses/4683932 to your computer and use it in GitHub Desktop.
Backbone 2 - Challenge 1-5
{ "appointment": { "title": "Ms. Kitty Hairball Treatment", "cankelled": false, "identifer": 1 }
// In the `Appointment` Model
parse: function(response){
var appointment = response.appointment;
appointment.cancelled = appointment.cankelled;
delete appointment.cankelled;
return appointment;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment