I have a problem with the twitter bootstrap modal...
It works fine when I don't have the .fade class on my element. As soon as I add it, the modal does not show up.
I tracked down the problem to this line, I think:
doAnimate ?
this.$backdrop.one(transitionEnd, callback) :
callback()
doAnimate is webkitTransitionEnd, it looks fine.
But I think transitionEnd is never fired, because I try to log something in the callback, and it never gets logged.
Any ideas?
EDIT: some code
The link:
<a href="/events/2-fefewfewfe/rsvps" data-backdrop="true" data-controls-modal="event-modal" data-keyboard="true">I'm attending!<span class="ico join"></span></a>
The modal (works without the fade class, doesnt when I add it)
<div id="event-modal" class="modal hide fade"></div>
The css:
.modal.fade {
-webkit-transition: opacity .3s linear, top .3s ease-out;
-moz-transition: opacity .3s linear, top .3s ease-out;
-ms-transition: opacity .3s linear, top .3s ease-out;
-o-transition: opacity .3s linear, top .3s ease-out;
transition: opacity .3s linear, top .3s ease-out;
top: -25%;
}
Am I missing something?
Thanks.
