Skip to content
This repository has been archived by the owner on Jun 19, 2018. It is now read-only.

Commit

Permalink
feat(monthView): add cal-day-open class to the open day
Browse files Browse the repository at this point in the history
Closes #463
  • Loading branch information
Matt Lewis committed Oct 10, 2016
1 parent a212cea commit 75d84c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/templates/calendarMonthCell.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
'cal-day-past': day.isPast,
'cal-day-today': day.isToday,
'cal-day-future': day.isFuture,
'cal-day-selected': vm.dateRangeSelect && vm.dateRangeSelect.startDate <= day.date && day.date <= vm.dateRangeSelect.endDate
'cal-day-selected': vm.dateRangeSelect && vm.dateRangeSelect.startDate <= day.date && day.date <= vm.dateRangeSelect.endDate,
'cal-day-open': dayIndex === vm.openDayIndex
}">

<small
Expand Down

0 comments on commit 75d84c6

Please sign in to comment.