Modal using "slide-in-up" animation disapear

Hi,
I just migrate from 0.9.23 to 0.9.26 and I noticed that modal disapears after animation “slide-in-up” is complete.

I managed to fix it by changing the following css rules in _animation.scss (l.508):

.slide-in-up {
  @include translate3d(0, 0, 0);
}

.slide-in-up.ng-enter,
.slide-in-up > .ng-enter {
  @include translate3d(0, 100%, 0);
  @include transition(all $slide-in-up-function 400ms);
}

That’s interesting. It’s not disappearing for me on 0.9.26. http://codepen.io/calendee/pen/sJkfI

What device, browser?

Hi @Calendee,
Indeed I am confused because I grabbed the wrong source code (from github master branch).
I tried using the release 0.9.26 and 0.9.27 and it works well.
Sorry about that.