Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upTABS, PILL TABS, first tab/pill don't showing content when page is loaded #78
Labels
Comments
|
@mlukac89 thanks for the report |
|
Hi! |
|
Alright, we only need to add "show" class to the elements in src/app/ui-elements/cards/tabs/(basic-tabs.hbs | pill-tabs.hbs):26
worked for me! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


When you open page UI Elements -> Cards i see TABS are not showing content until you click on other and back on first, same for pills.
Possible fix : ( worked for me )
<script type="text/javascript"> $(document).ready(function(){ $('.nav-item').tab('show'); $('.nav-tabs li a:first').trigger('click'); }); </script>