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
Hi !
I'm using the clipper-fixed component to do my stuff but i get the error as written in the title.
This is related to that thread.
can you help me ? :)
The text was updated successfully, but these errors were encountered:
As you can see, I have the same problem with your examples.
Sorry, something went wrong.
Hi @dewita , thanks for this important information. We need to use passive events for a better scrolling experience.
I use it on touch events but missing the wheel event.
touch
wheel
Here's where I define window wheel event (src\components\extends\clippo.js)
src\components\extends\clippo.js
const rxWheelListeners = { beforeCreate() { this.wheel$ = fromEvent(window, 'wheel') } }
const rxWheelListeners = { beforeCreate() { this.wheel$ = fromEvent(window, 'wheel', { passive: false }) } }
Seems clear !
Thanks for your maintenance @timtnleeProject
dist files
3c59467
No branches or pull requests
Hi !
I'm using the clipper-fixed component to do my stuff but i get the error as written in the title.
This is related to that thread.
can you help me ? :)
The text was updated successfully, but these errors were encountered: