Disable modal animations

Hi guys! Im wondering whats the best way to disable animations in modals? I’m working on a interface were speedy transitions is key. I’ve tried setting it to animation to ‘none’ or false which kind of works but it’s adds and annoying delay when closing. Is there anyway to tweak it?

Se here for example:

Have you tried to $scope.modal.remove(); when the user closes the button instead of close()?

If you need fast and simple modals… build your own one.
absolute positionated div with height, width 100% and add a toggle function to show and hide your div.

…any luck with this?

I encountered the same issue and solved it with setting transform to none in the css:

#login-modal {    transform:none !important;    }