Issue 2149: fullcalendar.js bug:
Status:  Invalid
Owner: ----
Closed:  Jun 2014
Reported by steve.es...@gmail.com, May 13, 2014
************************
fullcalendar.js, ~Line 210:

    /* Steve's Bugfix: 
	t.formatDate = function(format, date) { return formatDate(format, date, options) };
	t.formatDates = function(format, date1, date2) { return formatDates(format, date1, date2, options) };
    */
    t.formatDate = function(date, format) 
    { 
        if (date && format && options)
        {
            return formatDate(date, format, options)
        }
        else
        {
            return "fullcalendar.js bug - Set allDay:true in your events for now...";
        }
    };
	t.formatDates = function(date1, date2, format) 
    { 
        if (date1 && date2 && format && options)
        {
            return formatDates(date1, date2, format, options) 
        }
        else
        {
            return "fullcalendar.js bug - Set allDay:true in your events for now...";
        }
    };)
************************


Jun 7, 2014
Project Member #1 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Invalid
Jun 7, 2014
#2 steve.es...@gmail.com
Whatever