malihu / malihu-custom-scrollbar-plugin

Highly customizable custom scrollbar jQuery plugin, featuring vertical/horizontal scrollbars, scrolling momentum, mouse-wheel, keyboard and touch support etc.
http://manos.malihu.gr/jquery-custom-content-scroller
MIT License
4.11k stars 1.51k forks source link

shift+scroll not working #614

Open rameezrami opened 6 years ago

rameezrami commented 6 years ago

Normally we can horizontally scroll with mouse by pressing shift key and scroll, anywhere on pc. it works with normal scrolls. but not when custom scroll is added.

Saaaam commented 2 weeks ago

To solve this, you can edit the line 1481 of jquery.mCustomScrollbar.js, from :

if(o.axis==="x" || o.mouseWheel.axis==="x"){

to

if(e.shiftKey){

Note that this will bypass the functionality of choosing the scrolling axis direction by default with the wheel in the basic options