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
At line 974
parseInt(dateString.substr(8, 2, 10)),
have to be
parseInt(dateString.substr(8, 2), 10),
this cause a IE bad date show when format date because parseInt convert from octal.
I released crazy for this. :)
The text was updated successfully, but these errors were encountered:
At line 974
parseInt(dateString.substr(8, 2, 10)),
have to be
parseInt(dateString.substr(8, 2), 10),
this cause a IE bad date show when format date because parseInt convert from octal.
I released crazy for this. :)
The text was updated successfully, but these errors were encountered: