Created
February 18, 2016 17:09
-
-
Save manviny/680fae72d124d2d83a0a to your computer and use it in GitHub Desktop.
ng-repeat with bootstrap cols
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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