Skip to content

Instantly share code, notes, and snippets.

@sethmcl
Last active January 4, 2016 15:39
Show Gist options
  • Select an option

  • Save sethmcl/8642068 to your computer and use it in GitHub Desktop.

Select an option

Save sethmcl/8642068 to your computer and use it in GitHub Desktop.
// ViewA.js
initialize: function () {
this.listenTo(eventBus, 'item-selected', this.onItemSelected);
}
// ...
onItemSelected: function (e) {
var message = 'Item <strong>' + e.itemId + '</strong> selected';
this.$el.find('.event').html(message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment