I am trying to figure out how to dynamically create bootstrap
row divs with a class of row-fluid
with angular.js
using the ng-repeat
directive.
Here is the angular:
<div ng-repeat="task in tasks" class="row-fluid">
<div class="span6 well">{{task.name}}</div>
</div>
This does not work though. The bootstrap
html I wish to generate is:
Basically I need to do mod 2 of the index inside of the ng-repeat, and if its 0, close out the </div>
and create a new <div class="row-fluid">
. How is this possible?