| Issue 2149: | fullcalendar.js bug: | |
| 1 person starred this issue and may be notified of changes. | Back to list |
************************
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
Status:
Invalid
Jun 7, 2014
Whatever |
|
| ► Sign in to add a comment |