You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When including the option for usa date format, the date range seems to break on the end date. This is do to the fact that the plugin is calling formatDate on line 382 with the wrong parameters.
This:
if (endDate >= selected) {
options.endDate.val(formatDate(
new Date(
date.getTime() +
endDate.getTime() -
selected.getTime()
),
options.usa,
options.separator
));
}
Should be:
if (endDate >= selected) {
options.endDate.val(formatDate(
new Date(
date.getTime() +
endDate.getTime() -
selected.getTime()
),
options
));
}
The text was updated successfully, but these errors were encountered:
When including the option for usa date format, the date range seems to break on the end date. This is do to the fact that the plugin is calling formatDate on line 382 with the wrong parameters.
This:
Should be:
The text was updated successfully, but these errors were encountered: