0

I am using an Angular Widget (http://alexsuleap.github.io/) and it has some animations. The widget itself does not have any option to disable the animation. But the widget is using angular-animate.min.js. Is it possible in some way to disable all animations that may be provided from this dependency ?

Noor
  • 19,638
  • 38
  • 136
  • 254

1 Answers1

1

it is using animate method in css it is animating by opacity property you need to alter the css angular-tree-widget.css

treenode.ng-hide{
   opacity: 1 !important;
}

please add these in to your stylesheet then the animation will get stopped.

i hope it helps !!

Ashkar Km
  • 128
  • 1
  • 9