Scroll + limitTo

by Adam Schuld

HTML

<div class="test" ng-controller="Ctrl">
    <div class="name" ng-repeat="person in people | orderBy:['name','-age']">{{person.name}}-{{person.age}}</div>
    <div>

CSS

.name {
    margin-bottom: 1em;
}

JavaScript

var app = angular.module('app', []);

function Ctrl($scope) {
    $scope.people = [{
        'name': "Aaron",
        'age': 6
    }, {
        'name': "Aaron",
        'age': 13
    }, {
        'name': "Adam",
        'age': 26
    }, {
        'name': "Alan",
        'age': 20
    }, {
        'name': "Adam",
        'age': 25
    }, {
        'name': "Aaron",
        'age': 10
    }];
}