Skip to content

Instantly share code, notes, and snippets.

@drhayes
Created January 14, 2013 16:38
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 drhayes/4531355 to your computer and use it in GitHub Desktop.
Save drhayes/4531355 to your computer and use it in GitHub Desktop.
EventChain's every method
update.every = function(sec, doThis) {
update.during(
new EventChain()
.wait(sec)
.then(doThis)
.repeat()
);
return this;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment