Created
June 17, 2013 15:10
-
-
Save asjustas/5797645 to your computer and use it in GitHub Desktop.
FullCalendar.js normal date format
This file contains hidden or 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
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