Skip to content

Instantly share code, notes, and snippets.

@Mrkisha
Forked from noahlh/gist:5724658
Created June 10, 2018 13:10
Show Gist options
  • Save Mrkisha/cfd49f42357ffbf173839adc18d7a4b7 to your computer and use it in GitHub Desktop.
Save Mrkisha/cfd49f42357ffbf173839adc18d7a4b7 to your computer and use it in GitHub Desktop.
FullCalendar function to "grey out" days before the current date (it does this by applying the 'fc-other-month' style, which is what is used for dates that appear in another month). Uses the moment.js library to (more easily) manipulate date objects.
$('#calendar').fullCalendar({
// Other Calendar Options go here
viewDisplay: function(view){
$('.fc-day').filter(
function(index){
return moment( $(this).data('date') ).isBefore(moment(),'day')
}).addClass('fc-other-month');
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment