This is probably a really simple question (I am a bit new to AngularJS), but I have the following code:
<div ng-repeat="result in results" class="result">
<div class="col-md-2 padding">
...
</div>
</div>
For instance, after it fetches 4 result, I want the results to display on the next line. Is there a way to keep a counter for the results fetched by ng-repeat? Or some indication to make the next result display on the next line?