Disable modal animation on angular ui boostrap modal

I am using Angular UI Bootstrap modal with a little animation when the modal appears. The docs don't seem to have an option to disable this animation.

How do I turn off this animation when opening a modal file?

+3


source to share


1 answer


Use this

.modal.fade {
  opacity: 1;
}

.modal.fade .modal-dialog, .modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

      



See this link

+5


source







All Articles