Skip to content

Instantly share code, notes, and snippets.

@christiannwamba
Created March 5, 2018 20:23
Show Gist options
  • Save christiannwamba/5cf7bdd74c7c2cfbef9d573d15b5e4df to your computer and use it in GitHub Desktop.
Save christiannwamba/5cf7bdd74c7c2cfbef9d573d15b5e4df to your computer and use it in GitHub Desktop.
// app.js
subscribeToEventChannel() {
const channel = this.pusher.subscribe('trade');
channel.bind('stock', data => {
this.updateChartData(data)
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment