IOP-Patho/vendor/bower-asset/fullcalendar/tests/automated/view-render/TimeGridRenderUtils.js

16 lines
391 B
JavaScript
Raw Normal View History

2025-07-17 08:28:28 +00:00
export function getTimeAxisInfo() {
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
export function isStructureValid() {
return $('.fc-time-grid .fc-content-skeleton').length === 1
}