-
Notifications
You must be signed in to change notification settings - Fork 6.7k
collapse does not toggle #971
Comments
@zackarychapple BS3 support is still WIP, we are not done yet. There are 2-3 pull request for this already that needs to be reviewed. But support for collapse is probably one of the hardest things that is left. Anyway, you can follow the progress here: https://github.com/angular-ui/bootstrap/issues?milestone=6&state=open |
@caitp thanks for the Update! |
is this closed because it's working? the .6 release i have does not have collapse working |
closing a known but not solved issue seems... like an interesting strategy. i tried applying the 1001 patch against _bis2 but it fails the collapse tests
|
Yeah, there seems to be a flaky test. It's been passing on Travis and every browser I've personally tested with, so it would take some investigation to see what is causing it. If you'd like to take a look at it, by all means it could use another pair of eyes. Probably missing a $timeout.flush() somewhere, or something. |
fwiw, it Fails on Chrome 31 dev version on ubuntu. applying the patch and forcing the build is "good enough" for me at this point thanks for the contribution |
I've just tested on my 13.04 x64 machine with Canary, and it's all green... I think this is most likely a flakiness issue. I'll dig through in a bit and see if I'm missing a |
Bootstrap 3 has a display:none on collapse so the directive needs to be updated.
.collapse { display: none; &.in { display: block; } }
The text was updated successfully, but these errors were encountered: