<div ng-controller="TestCtrl">
<accordion close-others="false">
<accordion-group heading="group1">
<div class="btn-group" ng-class='{open: open}'>
<button class="btn">Action</button>
<button class="btn dropdown-toggle" data-toggle="dropdown" ng-click='open=!open'><span class="caret"></span></button>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
</accordion-group>
<accordion-group heading="group2">
content...
</accordion-group>
</accordion>
</div>
If I open the first group and then the drop down, it gets cut by the accordion. Is there a way to allow it to overflow?