0
I have a list of items, within a div, with the directive of angular ng-repeat. And I need to use an automatic scroll on that list, similar to this one DEMONSTRATION (is, uses jquery’s super-treadmill plugin). How can I do this with Angularjs (version 1.6)?
<div class="panel-body">
<div ng-repeat="model in collection">
<h1>{{model.name}}</h1>
<p>{{model.description}}</p>
</div>
</div>