Infinite Scroll
Triggers function when scrolling half-way through list for large lists.
- HTML
<div class="t-content" style="width:300px; height: 250px;" ng-controller="infiniteScrollExampleController as ctrl"> <div style="width:300px; height:250px; overflow-y: scroll;" inv-infinite-scroll on-scroll="ctrl.updateLimit"> <div ng-repeat="option in ctrl.options | limitTo: ctrl.scrollTo"> <span ng-bind="option.text"></span> </div> </div> </div>