Created
December 22, 2015 17:05
-
-
Save mcfedr/b5bdcfc5d0fd72ddd495 to your computer and use it in GitHub Desktop.
Animation cycle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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