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
Due to some the scroll is not on document in my app, it's on a element and because of this visibility is not setting true of it's child elements.
The text was updated successfully, but these errors were encountered:
Wrote a comment here #27 on how i think this could be solved
Sorry, something went wrong.
@fkhadra Any update or action planned on this? It seems to be a pretty common use case
For the moment, a simple (but probably not performant) way to solve it is to forward the scroll event to the window :
const event = new Event('scroll'); scrollingDiv.addEventListener('scroll', () => window.dispatchEvent(event));
No branches or pull requests
Due to some the scroll is not on document in my app, it's on a element and because of this visibility is not setting true of it's child elements.
The text was updated successfully, but these errors were encountered: