Im curious as to why this angular filter will work outside of an Angular directive but not inside. Can someone provide an explanation?
For instance, in the Plunkr below I've added a search filter which will work outside of the Bootstrap Angular UI accordian but when removed and added inside, it doesn't work?
http://plnkr.co/edit/GdFvay?p=preview
<div class="col-sm-4">
<input type="text" ng-model="searchText" class="form-control" placeholder="Search All">
<div>
<accordion close-others="oneAtATime">
<accordion-group >
<accordion-heading>
Search
</accordion-heading>
<input type="text" ng-model="searchText" class="form-control" placeholder="Search All">
</accordion-group>
</accordion>