Skip to content

Instantly share code, notes, and snippets.

@manviny
Created February 18, 2016 17:09
Show Gist options
  • Save manviny/680fae72d124d2d83a0a to your computer and use it in GitHub Desktop.
Save manviny/680fae72d124d2d83a0a to your computer and use it in GitHub Desktop.
ng-repeat with bootstrap cols
<div class="row">
<div ng-repeat="product in products">
<div class="clearfix" ng-if="$index % 3 == 0"></div>
<div class="col-sm-4">
<h2>{{product.title}}</h2>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment