Skip to content
New issue

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

Spinner: Prevent double mousewheel & wheel event handling #2342

Merged
merged 2 commits into from
Mar 20, 2025

Conversation

mgol
Copy link
Member

@mgol mgol commented Mar 19, 2025

As of gh-2338, if one has loaded the jQuery MouseWheel plugin, the mousewheel
handler would fire the wheel one, but the wheel one would also run in
response to the native wheel event, resulting in double the distance handled
by the spinner. To prevent the issue, only fire the wheel handler from inside
the mousewheel on if the event was triggered by jQuery - jQuery will not care
that the underlying event is wheel and will only fire handlers for
mousewheel.

Also, add an iframe test using jQuery MouseWheel to not affect all the other
tests.

Ref gh-2338

As of jquerygh-2338, if one has loaded the jQuery MouseWheel plugin, the `mousewheel`
handler would fire the `wheel` one, but the `wheel` one would also run in
response to the native `wheel` event, resulting in double the distance handled
by the spinner. To prevent the issue, only fire the `wheel` handler from inside
the `mousewheel` on if the event was triggered by jQuery - jQuery will not care
that the underlying event is `wheel` and will only fire handlers for
`mousewheel`.

Also, add an iframe test using jQuery MouseWheel to not affect all the other
tests.

Ref jquerygh-2338
@mgol mgol added this to the 1.14.2 milestone Mar 19, 2025
@mgol mgol requested a review from fnagel March 19, 2025 10:24
@mgol mgol self-assigned this Mar 19, 2025
Also:
* Migrate the new wheel + mousewheel spinner test to use it
* Migrate from `QUnit.reset` to `QUnit.done`
  (see qunitjs/qunit#354)
@mgol mgol force-pushed the mousewheel-wheel-interaction branch from 2144831 to bedc762 Compare March 19, 2025 10:26
Copy link
Member

@fnagel fnagel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Make sense and looks good by reading!

@mgol mgol removed the Needs review label Mar 20, 2025
@mgol mgol merged commit 44de3d3 into jquery:main Mar 20, 2025
11 checks passed
@mgol mgol deleted the mousewheel-wheel-interaction branch March 20, 2025 23:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging this pull request may close these issues.

3 participants