Skip to content

Instantly share code, notes, and snippets.

@sbosell
Created October 10, 2013 19:18
Show Gist options
  • Save sbosell/6923938 to your computer and use it in GitHub Desktop.
Save sbosell/6923938 to your computer and use it in GitHub Desktop.
element.bind('click', function (e) {
e.preventDefault();
// tenemos que usar safeApply porque es posible que tengamos un conflicto con un digest.
// este nos ayuda evitar ese conflicto.
safeApply(scope, function () {
scope.isAnimated = !scope.isAnimated;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment