Skip to content

Instantly share code, notes, and snippets.

@sbosell
Created October 10, 2013 19:22
Show Gist options
  • Save sbosell/6923995 to your computer and use it in GitHub Desktop.
Save sbosell/6923995 to your computer and use it in GitHub Desktop.
scope.$watch('isAnimated', function (isAnimated) {
// cuando isAnimated cambie necesitamos lanzarlo o pararlo
if (scope.isAnimated) {
startAnimation();
} else {
timeFunctions.$clearInterval(scope.animateTimeout);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment