We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
See this REPL JS output.
It currently outputs:
// ...other stuff $.event( "gotpointer", div, () => {}, // something true ); $.event( "lostpointer", div, () => {}, // something true );
whilst it should be outputing this:
// ...other stuff $.event( "gotpointercapture", div, () => {}, // something false ); $.event( "lostpointercapture", div, () => {}, // something false );
which breaks things like this REPL.
1- go to this REPL 2- click on the inner div and move you mouse 3- expected to see "got pointer in parent" and "lost pointer parent" get logged
No response
svelte 5-next.141
annoyance
The text was updated successfully, but these errors were encountered:
fix: parse ongotpointercapture and onlostpointercapture events correc…
b963e53
…tly (#11790) Fixes #11789
Successfully merging a pull request may close this issue.
Uh oh!
There was an error while loading. Please reload this page.
Describe the bug
See this REPL JS output.
It currently outputs:
whilst it should be outputing this:
which breaks things like this REPL.
Reproduction
1- go to this REPL
2- click on the inner div and move you mouse
3- expected to see "got pointer in parent" and "lost pointer parent" get logged
Logs
No response
System Info
Severity
annoyance
The text was updated successfully, but these errors were encountered: