ember-calendar-table
v2.0.0
Published
This component provides a simple primitive component for iterating over timeslots and days as a table
Downloads
5
Maintainers
Readme
Ember-calendar-table
This component provides a simple primitive component for iterating over timeslots and days as a table.
Installation
ember install ember-calendar-table
Use
By default, the Ember Calendar Table component will make a one week swath of 7 days with working hours (9AM-5PM).
It will yield startTime
and endTime
moment.js objects.
{{#ember-calendar-table as |startTime endTime|}}
{{moment-format startTime "h:mm"}} - {{moment-format endTime "h:mm"}}
{{/ember-calendar-table}}