I am using angular-bootstrap modal and trying to remove the slide down effect when it is closed.
I tried to remove 'fade' class like this, but it didn't work.
angular.module('myapp.directives', [])
.directive 'modalWindow', ()->
restrict:'EA'
link:(scope,elem)->
elem.removeClass("fade")
How can I access or manipulate the DOM created by angular-bootstrap?