Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Spinner: Prevent double mousewheel & wheel event handling | Michał Gołębiowski-Owczarek | 2025-03-21 | 2 | -0/+278 |
| | | | | | | | | | | | | | | | | | 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. Plus, migrate from `QUnit.reset` to `QUnit.done` (see qunitjs/qunit#354). Closes gh-2342 Ref gh-2338 | ||||
* | Spinner: Drop dependency on jQuery Mousewheel | Michał Gołębiowski-Owczarek | 2025-03-18 | 2 | -241/+0 |
| | | | | | | | 1. Listen to the native `wheel` event without depending on any wrapper plugins. 2. Keep listening to the `mousewheel` event for compatibility with projects using the jQuery Mousewheel plugin but route it to the `wheel` handler. Closes gh-2338 | ||||
* | Build: Upgrade to jquery-mousewheel 3.1.12 | Scott González | 2014-07-22 | 2 | -4/+25 |
| | |||||
* | Build: Reorganize external directory | Scott González | 2014-06-24 | 1 | -0/+220 |
Put each external library into its own directory. Move jquery.js to external. Ref gh-1266 |