Skip to content

Instantly share code, notes, and snippets.

@Luxiyalu
Created September 30, 2014 08:49
Show Gist options
  • Save Luxiyalu/39bffc21b8e97b26c094 to your computer and use it in GitHub Desktop.
Save Luxiyalu/39bffc21b8e97b26c094 to your computer and use it in GitHub Desktop.
AngularJS Directive: Disable Ng-Animate
# use: fix the bug when angular-ui-bootstrap slider flickers
app.directive 'disableNgAnimate', ($animate) ->
restrict: 'A'
link: ($scope, $element) -> $animate.enabled(false, $element)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment