Skip to content

Instantly share code, notes, and snippets.

@ericelliott
Created April 18, 2015 00:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericelliott/183f0943693ec21f9c89 to your computer and use it in GitHub Desktop.
Save ericelliott/183f0943693ec21f9c89 to your computer and use it in GitHub Desktop.
Sunshine
// A ray of sunshine in the belly of
// the beast...
var object = {};
_.extend(object, Backbone.Events);
object.on("alert", function(msg) {
alert("Triggered " + msg);
});
object.trigger("alert", "an event");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment