http://taskteam.herokuapp.com/welcome/faq
We're noticing that with Bootstrap 3, whenever we first load a page, clicking on page references (such as the accordion links) that you cannot repeat the action. So say you expand a FAQ. You can't close it.
But if you refresh the page - it suddenly works as intended. We also noticed this with our responsive design, and if you shrink the width of the page, our little menu icon also bugs out in a similar fashion. Refreshing the page fixes it.
According to this stackoverflow, its a jQuery and turbolink issue. But we have that gem and both locally and on heroku, it shows the same behavior. According to the console in chrome, jQuery is also being loaded before Bootstrapper as intended.
<div class="accordion" id="myaccordion">
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#myaccordion" href="#first">
What is TaskTeam? </a> </div>
<div id="first" class="accordion-body collapse">
<div class="accordion-inner"> This is our inside </div>
</div>
</div>