Skip to content

mark Dates in the past and the future #6

Description

@Schrank

To style days in the past and the future, I needed classes for it.

Lines 362++

// Today, past and future
if (date.getFullYear() == thisYear && date.getMonth() == thisMonth && day == thisDay) {
cell.addClassName('today')
} else if (date.getFullYear() >= thisYear && date.getMonth() >= thisMonth && day >= thisDay) {
cell.addClassName('futureDay')
} else {
cell.addClassName('pastDay')
}

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions