My favorites | Sign in
Project Home Issues
New issue   Search
for
  Advanced search   Search tips   Subscriptions
Issue 2149: fullcalendar.js bug:
1 person starred this issue and may be notified of changes. Back to list
Status:  Invalid
Owner:  ----
Closed:  Jun 2014


Sign in to add a comment
 
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
Sign in to add a comment

Powered by Google Project Hosting