Skip to content

Instantly share code, notes, and snippets.

@mcfedr
Created December 22, 2015 17:05
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 mcfedr/b5bdcfc5d0fd72ddd495 to your computer and use it in GitHub Desktop.
Save mcfedr/b5bdcfc5d0fd72ddd495 to your computer and use it in GitHub Desktop.
Animation cycle
var a = true;
function doStep() {
....
if (a) {
setTimeout(doStep, 10);
}
}
setTimeout(doStep, 10);
button.addEventListener('click', function() {
a = false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment