-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('#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