| 1234567891011121314 |
- import * as EventDragUtils from './EventDragUtils'
- import * as DayGridRenderUtils from '../view-render/DayGridRenderUtils'
- export function drag(startDate, endDate, debug) {
- var el0 = DayGridRenderUtils.getSingleDayEl(startDate)
- var el1 = DayGridRenderUtils.getSingleDayEl(endDate)
- return EventDragUtils.drag(
- el0[0].getBoundingClientRect(),
- el1[0].getBoundingClientRect(),
- debug
- )
- }
|