Why does the angular-ui accordion in the below example seem to not like the span elements? I originally had these elements in a type of table (so I know they work) but decided to move them into an accordion since that is the functionality I am looking for.
I want the title in the accordion header pulled to the left and the checkmark button to in the header pulled to the right.
<accordion close-others="false">
<accordion-group data-ng-repeat="group in groups">
<accordion-heading>
<span class="pull-left">
{{ group.title }}
</span>
<span class="pull-right">
<button class="btn btn-success">✓</button>
</span>
</accordion-heading>
{{ group.content }}
</accordion-group>
http://plnkr.co/edit/rkbZ6h4tUnCOQ0swsngg
Am I going to be able to use the accordion for the button in the first place or will the clicking of the header always interfere with clicking the button?