如何编辑t-datepicker以选择同一天的签到和签出?
// Click calendar ở t-check-in chuyển element qua t-check-out
datepicker = $(this).parents('.t-datepicker').find('.t-check-out')
// Chuyển đổi khi không có t-check-out, only calendar for options dateRange === true
if ( datepicker.length === 0 ) {
datepicker = $(this_el).find('.t-picker-only')
// Xoá t-check-out sao khi chọn ngày
setTimeout( function(){
if ( $('.t-datepicker-day').length !== 0 && settings.autoClose === true ) {
$('.t-datepicker-day').remove()
$('.t-arrow-top').remove()
}
}, 10 )
}