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
I have an event listener on .nav li:
.nav li
$(".nav li a").bind("mouseover", event => { console.log(event); // logs the event });
When I use smoothState with this config :
{ prefetch: true, anchors: ".li li a" }
No more mouseover handler are called. The event is not bubbling from the a to the parent li when prefetch is set to true.
mouseover
a
li
prefetch
true
The text was updated successfully, but these errors were encountered:
fix(prefetch): allow event bubbling (progressive)
4b5d459
Fix miguel-perez#354 miguel-perez#354
Update README.md
3548184
Fix miguel-perez#354
85e7d47
No branches or pull requests
I have an event listener on
.nav li
:When I use smoothState with this config :
No more
mouseover
handler are called. The event is not bubbling from thea
to the parentli
whenprefetch
is set totrue
.The text was updated successfully, but these errors were encountered: