Skip to content

Instantly share code, notes, and snippets.

@tuto1902
Created January 27, 2014 17:08
Show Gist options
  • Save tuto1902/8652796 to your computer and use it in GitHub Desktop.
Save tuto1902/8652796 to your computer and use it in GitHub Desktop.
Publish / Subscribe
Application.vent.on('someEvent', function(someData){
console.log('Event triggered with ' + someData);
});
Application.vent.trigger('someEvent', 'some data');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment