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
There's a bug in this lib when running on iOS 9 with Safari where if you have 0.03 in the input, pressing 0 with the cursor at the end doesn't get you 0.30.
After hours looking into the source code, I've found the cause: toLocaleString is not supported by iOS 9. I had to patch-package the node module like this to make it work:
There's a bug in this lib when running on iOS 9 with Safari where if you have
0.03
in the input, pressing0
with the cursor at the end doesn't get you0.30
.After hours looking into the source code, I've found the cause:
toLocaleString
is not supported by iOS 9. I had topatch-package
the node module like this to make it work:Hope it helps.
The text was updated successfully, but these errors were encountered: