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
handlebars-intl.js -> formatDate function and similar. This functions accept "date" as parameter and create new Date object like: date = new Date(date);
If "date" will be 2016-08-18 in FF it will work, but it fail in safari, since safari doesn't support "-" in date. Valid format for safari is 2016/08/18.
So at the moment it works in one browser, depend on date format.
Regards,
Max
The text was updated successfully, but these errors were encountered:
Hi,
handlebars-intl.js -> formatDate function and similar. This functions accept "date" as parameter and create new Date object like:
date = new Date(date);
If "date" will be
2016-08-18
in FF it will work, but it fail in safari, since safari doesn't support"-"
in date. Valid format for safari is2016/08/18
.So at the moment it works in one browser, depend on date format.
Regards,
Max
The text was updated successfully, but these errors were encountered: