datepicker icon indicating copy to clipboard operation
datepicker copied to clipboard

February in a leap year

Open koota413 opened this issue 3 years ago • 0 comments

bug of displaying February in a leap year

https://github.com/qiuyaofan/datepicker/blob/af09df99da5fcc03adb2d55c99a1aa73e7145dec/js/datepicker.all.js#L1150 var day = parseInt(API.getMonthDay(month, year));

https://github.com/qiuyaofan/datepicker/blob/af09df99da5fcc03adb2d55c99a1aa73e7145dec/js/datepicker.all.js#L1219 begin = (parseInt(weekday) + day) % 7;

https://github.com/qiuyaofan/datepicker/blob/af09df99da5fcc03adb2d55c99a1aa73e7145dec/js/datepicker.all.js#L1221 var nextMax = ((6 - row - 1) * 7 + (6 - weekdayLast)) % 7;

koota413 avatar May 06 '21 11:05 koota413