| 123456789101112131415161718 |
- var TimeGridRenderUtils = {
- getTimeAxisInfo: function() {
- return $('.fc-slats tr[data-time]').map(function(i, tr) {
- return {
- text: $(tr).find('.fc-time').text(),
- isMajor: !$(tr).hasClass('fc-minor')
- };
- }).get();
- },
- // for https://github.com/fullcalendar/fullcalendar-scheduler/issues/363
- isStructureValid: function() {
- return $('.fc-time-grid .fc-content-skeleton').length === 1;
- }
- };
|