Reputation: 9247
Is it possible to write something like
ng-repeat="s in sportMenu | limitTo:all:7>
So idea is to skip first seven and get rest of them ?
Upvotes: 0
Views: 37
Reputation: 130132
You don't need angular expressions for that, there is already a pure javascript solution:
ng-repeat="s in sportMenu.slice(7)"
Upvotes: 0