Last active
December 10, 2015 01:48
-
-
Save berzniz/4361743 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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