We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://craigy.ru/t/hakobian
Seems like this option of Mousewheel module doesn't work.
Sorry for no pull request but I think an error in \src\modules\mousewheel\mousewheel.js on strings 388-389:
// Return page scroll on edge positions if (position === swiper.minTranslate() || position === swiper.maxTranslate()) return true;
// Return page scroll on edge positions
if (position === swiper.minTranslate() || position === swiper.maxTranslate()) return true;
It works for me like this:
// Return page scroll on edge positions if (params.releaseOnEdges && (position === swiper.minTranslate() || position === swiper.maxTranslate())) return true;
if (params.releaseOnEdges && (position === swiper.minTranslate() || position === swiper.maxTranslate())) return true;
No response
9.4.1
Windows 10 Home, all browsers
The text was updated successfully, but these errors were encountered:
'releaseOnEdges' option doesn't work nolimits4web#6770
6f94bda
8a83360
Successfully merging a pull request may close this issue.
Check that this is really a bug
Reproduction link
https://craigy.ru/t/hakobian
Bug description
Seems like this option of Mousewheel module doesn't work.
Sorry for no pull request but I think an error in \src\modules\mousewheel\mousewheel.js on strings 388-389:
// Return page scroll on edge positions
if (position === swiper.minTranslate() || position === swiper.maxTranslate()) return true;
It works for me like this:
// Return page scroll on edge positions
if (params.releaseOnEdges && (position === swiper.minTranslate() || position === swiper.maxTranslate())) return true;
Expected Behavior
No response
Actual Behavior
No response
Swiper version
9.4.1
Platform/Target and Browser Versions
Windows 10 Home, all browsers
Validations
Would you like to open a PR for this bug?
The text was updated successfully, but these errors were encountered: