-
-
Notifications
You must be signed in to change notification settings - Fork 78.9k
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
nested tabs (using .tabs within .tab-content) - bootstrap-tabs.js #310
Labels
Comments
nope, just didn't think would do that. Good call. |
Tnx @jigawatt121, great this helped me out |
@fat Are you going to add this to 1.4-wip? That'd be awesome. |
yep i will |
this has just been resolved in master, thanks! |
This was referenced Apr 13, 2021
This was referenced Apr 26, 2021
This was referenced Nov 28, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When switching tabs on the outer container, the inner tabs get their 'active' class removed also.
I changed line 24 from:
container.find('.active').removeClass('active')
to
container.children('.active').removeClass('active')
Seems to work for me. Is there any reason to remove the 'active' class from all descendants?
The text was updated successfully, but these errors were encountered: