Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <tbody>
  2. <tr ng-repeat="hour in workhours">
  3. <td >{{hour}}:00 - {{hour+1}}:00</td>
  4. <td ng-class="{'full' : !entry.HoursAvailable.includes(hour)}" ng-click="checkSlotAvailability(hour, jobLength, entry, data)" ng-repeat="entry in data.calendar" >
  5. {{entry.HoursAvailable.includes(hour) ? 'AVAILABLE' : 'FULL'}}
  6. </td>
  7. </tr>
  8. </tbody>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement