I have a filter list which have 50 items. I just want to show 5 items and hide the rest to make a "Show More" button.
<ul>
<li ng-repeat="a in filters.area">
<input type="checkbox" ng-change="filter()" ng-model="a.checked"> {{ a.name }}
</li>
</ul>
<span>SHOW MORE</span>