Skip to content

Instantly share code, notes, and snippets.

@benash
Created July 23, 2014 12:37
Show Gist options
  • Save benash/9105d0f36795e7dae38a to your computer and use it in GitHub Desktop.
Save benash/9105d0f36795e7dae38a to your computer and use it in GitHub Desktop.
// Handling an event with on
pageEventBus.on('advancedModeSelected', this.switchToAdvancedMode, this);
// Handling the same event with listenTo (preferred)
this.listenTo(pageEventBus, 'advancedModeSelected', this.switchToAdvancedMode);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment