Skip to content

Instantly share code, notes, and snippets.

@christianhanvey
Created November 8, 2021 22:15
Show Gist options
  • Save christianhanvey/58a84b57b8bd62ce67596baf757a99b9 to your computer and use it in GitHub Desktop.
Save christianhanvey/58a84b57b8bd62ce67596baf757a99b9 to your computer and use it in GitHub Desktop.
AngularJS Prevent-Animations directive
angular
.module('utilities')
.directive('preventAnimations', ['$animate', function ($animate) {
return {
restrict: 'A',
link: function (scope, element, attrs) {
$animate.enabled(element, false);
}
};
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment