DayGridEventDragUtils.js 406 B

1234567891011121314
  1. import * as EventDragUtils from './EventDragUtils'
  2. import * as DayGridRenderUtils from '../view-render/DayGridRenderUtils'
  3. export function drag(startDate, endDate, debug) {
  4. var el0 = DayGridRenderUtils.getSingleDayEl(startDate)
  5. var el1 = DayGridRenderUtils.getSingleDayEl(endDate)
  6. return EventDragUtils.drag(
  7. el0[0].getBoundingClientRect(),
  8. el1[0].getBoundingClientRect(),
  9. debug
  10. )
  11. }