greatCodeIdeas / md-date-range-picker

Angular Material Date Range Picker Service/Directive
MIT License
62 stars 40 forks source link

calendarStartDate / calendarEndDate wrong calc #28

Closed lironbar closed 6 years ago

lironbar commented 6 years ago

calendarStartDate / calendarEndDate wrong calc when month start on Sunday and should be the first day view on calendar

calendarStartDate = new Date(currentDate.getFullYear(), currentDate.getMonth(), 1 - (monthStartDate.getDay() == 0 ? 6 : (monthStartDate.getDay() - getFirstDayOfWeek()))),

the ? 6 should be set to 0 and not 6. same as calendarEndDate

lironbar commented 6 years ago

great! thanks for the update