Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2015
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. <table class="calendar">
  2. <thead>
  3. <tr>
  4. <th>M</th>
  5. <th>T</th>
  6. <th>W</th>
  7. <th>T</th>
  8. <th>F</th>
  9. <th>S</th>
  10. <th>S</th>
  11. </tr>
  12. </thead>
  13. <tbody ng-click="bindCellValue($event)">
  14. <tr ng-repeat="week in (days.length/7 | array)">
  15. <td ng-repeat="day in days.slice(7*$index, 7*$index + 7) track by $index">
  16. {{ day }}
  17. <i class="icon ion-checkmark answer-correct" ng-if="submitted && answers[i].correct"></i>
  18. <i class="icon ion-close answer-wrong" ng-if="submitted && !answers[i].correct"></i>
  19. </td>
  20. </tr>
  21.  
  22. </tbody>
  23. </table>
  24.  
  25. $scope.days = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, null, null, null, null ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement