aboutsummaryrefslogtreecommitdiffstats
path: root/external/jquery-mousewheel/jquery.mousewheel.js
Commit message (Collapse)AuthorAgeFilesLines
* Spinner: Prevent double mousewheel & wheel event handlingMichał Gołębiowski-Owczarek2025-03-211-0/+242
| | | | | | | | | | | | | | | | | 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 MousewheelMichał Gołębiowski-Owczarek2025-03-181-221/+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.12Scott González2014-07-221-4/+5
|
* Build: Reorganize external directoryScott González2014-06-241-0/+220
Put each external library into its own directory. Move jquery.js to external. Ref gh-1266