Skip to content

Instantly share code, notes, and snippets.

@drhayes
Created January 14, 2013 06:20
Show Gist options
  • Save drhayes/4528085 to your computer and use it in GitHub Desktop.
Save drhayes/4528085 to your computer and use it in GitHub Desktop.
EventChain's then function
update.then = function(doThis) {
steps.push(function() {
// Update.
doThis();
// End.
steps.shift();
});
return this;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment