Fix axis specific deltas on Firefox < 17#73
Closed
dskiff wants to merge 1 commit intojquery:masterfrom
dskiff:old-firefox-fix
Closed
Fix axis specific deltas on Firefox < 17#73dskiff wants to merge 1 commit intojquery:masterfrom dskiff:old-firefox-fix
dskiff wants to merge 1 commit intojquery:masterfrom
dskiff:old-firefox-fix
Conversation
- FF versions less than 17 use DOMMouseScroll event, which provides a detail (the magnitude) and axis of the scroll. However, it doesn't provide individual dy, dx values, and the axis is currently ignored by jquery-mousewheel.
Contributor
|
Closing in favor of #74. |
Author
|
#74, If I understand it correctly, wouldn't completely solve my issue, since ideally I'd want to be able to differentiate between horizantal/vertical scrolls. I needed support for FF 10 (sad, I know), so I thought I'd push it back in case anybody else was stuck with the same sad issue. |
Contributor
|
I lumped it in with 74 because it was related to the axis stuff. I'm going to get this in as well. I actually have it done locally as of this morning but got pulled away and haven't had time to test everywhere yet. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
detail (the magnitude) and axis of the scroll. However, it doesn't
provide individual dy, dx values, and the axis is currently ignored
by jquery-mousewheel.