Last active
August 29, 2015 13:59
-
-
Save marc-hughes/10918197 to your computer and use it in GitHub Desktop.
This file contains 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
<tr> | |
<td> | |
<ul> | |
<li kanban-cell | |
card-id="state.card" | |
ng-repeat="state in ctrl.game.states | filter:{column:'backlog'} " | |
ng-include="/boardcomponents/kanbancell.html"> | |
</li> | |
</ul> | |
</td> | |
<td> | |
<ul> | |
<li kanban-cell | |
card-id="state.card" | |
ng-repeat="state in ctrl.game.states | filter:{column:'todo'} " | |
ng-include="/boardcomponents/kanbancell.html"> | |
</li> | |
</ul> | |
</td> | |
<td> | |
<ul> | |
<li kanban-cell | |
card-id="state.card" | |
ng-repeat="state in ctrl.game.states | filter:{column:'doing'} " | |
ng-include="/boardcomponents/kanbancell.html"> | |
</li> | |
</ul> | |
</td> | |
</tr> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment