Skip to content

Instantly share code, notes, and snippets.

@agoragames
agoragames / gist:136525
Created June 26, 2009 14:23
Callback chains with continuations
// callbacks.js should be included before everything else so any file can add callbacks (before the actual triggers for those callbacks are defined)
var Callbacks = {
// Define the default callback containers
Hydra : {
before_fire : [],
after_fire : [],
on_error : [],
on_load : []
},