Skip to content

Instantly share code, notes, and snippets.

@benash
Created July 23, 2014 11:25
Show Gist options
  • Save benash/b8367784753a566a9962 to your computer and use it in GitHub Desktop.
Save benash/b8367784753a566a9962 to your computer and use it in GitHub Desktop.
// parentView.js
updateData: function() {
this.data.update();
pageEventBus.trigger('dataUpdated');
}
// childView.js
initialize: function() {
this.listenTo(pageEventBus, 'dataUpdated', this.handleDataUpdate);
},
handleDataUpdate: function() {
this.render();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment