Make Angular UI accordion fully clickable instead of only Heading Label

Viewed 1004

I am using an Angular ui-bootstrap accordion. With my current code, I am not able to click and open the entire heading panel, only heading label(Title) is clickable and opening the accordion. Any help is appreciated. Thanks in advance ! Here is my HTML:

 <uib-accordion close-others="oneAtATime">
    <div uib-accordion-group is-open="sv.isOpen" class="panel-default" id="{{ sv.domId }}" heading="{{(sv.type == 'Check Call') && sv.type || sv.type + ': '+ sv.city +', '+sv.state}}" 
    ng-repeat="sv in segment.stopVos" tab-group={{$index+1}}>
       <div class="app-wrapper content">
1 Answers
Related