Skip to content

Instantly share code, notes, and snippets.

@berzniz
Last active December 10, 2015 01:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save berzniz/4361743 to your computer and use it in GitHub Desktop.
Save berzniz/4361743 to your computer and use it in GitHub Desktop.
initialize: function() {
// Observe changes to the model and call the render function when they happen
this.model.on('change', this.render, this);
// Render the view for the first time
render();
}
userMarkedObjectAsFavorite: function() {
// We're changing the mode, not the UI
this.model.set('favorite', true);
}
render: function() {
// Code to update the UI from the model
}
// Un-observing code is left out to simplify the example
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment