Commit 97093984be372d3d103b73ce1be0d91a5b9730ec
1 parent
07920d05fe
Exists in
master
and in
1 other branch
doesnt need 'rows' anymore, its still there, do whatever with it
Showing 3 changed files with 12 additions and 3 deletions Side-by-side Diff
scripts/FeedController.js
View file @
9709398
styles/flashy.css
View file @
9709398
templates/feed.html
View file @
9709398
... | ... | @@ -4,8 +4,14 @@ |
4 | 4 | <div class="progress center-align" style="margin: 70px auto auto;width:50%;" ng-show="cardRows.length == 0"> |
5 | 5 | <div class="indeterminate"></div> |
6 | 6 | </div> |
7 | - <div class='row' ng-repeat="row in cardRows"> | |
7 | + <!--div class='row' ng-repeat="row in cardRows"> | |
8 | 8 | <div ng-repeat ="card in row"> |
9 | + <flashcard flashcard-obj="card" refresh="hide(card)"/> | |
10 | + </div> | |
11 | + </div>--> | |
12 | + | |
13 | + <div class="cardColumn" ng-repeat="col in cardCols"> | |
14 | + <div ng-repeat="card in col"> | |
9 | 15 | <flashcard flashcard-obj="card" refresh="hide(card)"/> |
10 | 16 | </div> |
11 | 17 | </div> |