Skip to content

Instantly share code, notes, and snippets.

@asjustas
Created June 17, 2013 15:10
Show Gist options
  • Save asjustas/5797645 to your computer and use it in GitHub Desktop.
Save asjustas/5797645 to your computer and use it in GitHub Desktop.
FullCalendar.js normal date format
var formatDate = function(dateString) {
var parsedDate = $.fullCalendar.parseDate(dateString);
return $.fullCalendar.formatDate(parsedDate, 'dddd d MMMM yyyy',options);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment