Open
Description
Discussed in #480
Originally posted by blitzve0 June 4, 2022
demo.mp4
Hi, I am using a plugin to disable X-axis horizontal scrolling totally, but sometimes accidentally when I hold and drag from the right edge, the site starts horizontally dragging. You can check the video and can try it out also here https://haspr.in/
This is the Plugin
import Scrollbar from 'smooth-scrollbar'
class DisableScroll extends Scrollbar.ScrollbarPlugin {
static pluginName = 'DisableScroll'
transformDelta(delta, fromEvent) {
delta['x'] = 0
return delta
}
}
DisableScroll.pluginName = 'DisableScroll'
export default DisableScroll
```</div>
Metadata
Metadata
Assignees
Projects
Status
Bugs