-
-
Notifications
You must be signed in to change notification settings - Fork 177
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Any instance of the string 'in' in a collapse's class attribute breaks Collapse #54
Comments
Do you have a test scenario with the issue please? |
Sure. The situation that brought this up was a collapse
that targeted this
Because |
Thanks for the library, by the way, was exactly what I was looking for! |
Does the |
this issue still isn't fixed.
|
I think we will have a new |
@thednp cool! at this point i have to manually patch javascript because i have a div with class name hoping this gets patched soon. |
Why not use classList.contains('class-name') and polyfill ie? |
To keep polyfill dependency to as low as possible. I noticed some users haven't even heard of them. |
@thednp according to Microsoft: https://www.microsoft.com/en-us/WindowsForBusiness/End-of-IE-support |
I think we're all looking forward to bootstrap v4; then we won't have to support IE8. |
@RyanZim BS v4 just dropped IE 9: twbs/bootstrap#21387 |
yes, our v4 version will be IE9+ of course. |
@RyanZim we only need a proper |
@thednp BS v4's css will be totally broken in IE9, why support IE9 for the JS? |
https://v4-alpha.getbootstrap.com/migration/
But we are talking about the alpha, we don't know what's on the table with the RC/stable version. |
Hosted docs are out of date with the alpha development branch. Actual latest docs are here: https://github.com/twbs/bootstrap/blob/v4-dev/docs/migration.md#browser-support.
|
Ah great, so people will have to fork or look for other frameworks ;) Off topic: I have had some ideas on hot to make a better HTML5 framework with plain JS some grids and few more components. |
If you don't mind I will create some custom components based on your code (@thednp ) |
Why should I? As long as the MIT license is all the way, we're all happy :) |
@thednp there is https://frend.co but doesn't fulfilled most cases... |
Indeed, that's a bit too "one purpose" to me. In my mind I think of a good typography + an improved&simplified bsn + some grid + some content light design. |
I was thinking about it and I wish to have a final note in regards to @RyanZim & @DGT41 remarks: our bsn here is for BS3 and will continue to support older browsers, just as the original script. The future version BSN will be also like BS4 for browser support. @thewisenerd I started implementing a Happy New Year!! |
Happy new year @thednp 🎉 Reasonable decision, I like it! |
Presumably this would be fixed by changing the regex to match
/\bin\b/
instead of/in/
in the toggle function.The text was updated successfully, but these errors were encountered: