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
For old Android Chrome users (version < 80), the polyfill can throw an error - Cannot read property 'set' of undefined. The following changes:
Cannot read property 'set' of undefined
var ELEMENT_ORIGINAL_SCROLL_TOP_SET_DESCRIPTOR = UNSUPPORTED_ENVIRONMENT ? undefined : (Object.getOwnPropertyDescriptor(Element.prototype, "scrollTop")||{}).set;
and
var ELEMENT_ORIGINAL_SCROLL_LEFT_SET_DESCRIPTOR = UNSUPPORTED_ENVIRONMENT ? undefined : (Object.getOwnPropertyDescriptor(Element.prototype, "scrollLeft")||{}).set;
will let it fail silently.
The text was updated successfully, but these errors were encountered:
Hi, any update on this issue, i'm facing the same. Regards
Sorry, something went wrong.
fix: wessberg#15
b8f616e
70914e5
No branches or pull requests
For old Android Chrome users (version < 80), the polyfill can throw an error -
Cannot read property 'set' of undefined
.The following changes:
and
will let it fail silently.
The text was updated successfully, but these errors were encountered: