We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This library does not load correctly when used in chrome for users with third-party cookies disabled.
When users have this setting enabled, localStorage is blocked. https://www.chromium.org/for-testers/bug-reporting-guidelines/uncaught-securityerror-failed-to-read-the-localstorage-property-from-window-access-is-denied-for-this-document
The error in dev tools is "Failed to read the 'localStorage' property from 'Window': Access is denied for this document."
This affects code in native.js which has calls to localStorage.
This might be fixed by wrapping the localStorage aspects in a try/catch. Or there may be some other clever way.
try/catch
Related to iancoleman/bip39#395
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This library does not load correctly when used in chrome for users with third-party cookies disabled.
When users have this setting enabled, localStorage is blocked.
https://www.chromium.org/for-testers/bug-reporting-guidelines/uncaught-securityerror-failed-to-read-the-localstorage-property-from-window-access-is-denied-for-this-document
The error in dev tools is "Failed to read the 'localStorage' property from 'Window': Access is denied for this document."
This affects code in native.js which has calls to localStorage.
This might be fixed by wrapping the localStorage aspects in a
try/catch
. Or there may be some other clever way.Related to iancoleman/bip39#395
The text was updated successfully, but these errors were encountered: