Drarig29 / brackets-viewer.js

A simple library to display tournament brackets (round-robin, single elimination, double elimination).
https://drarig29.github.io/brackets-docs
MIT License
177 stars 45 forks source link

Support mouse dragging #39

Open Drarig29 opened 3 years ago

Drarig29 commented 3 years ago

Could be cool to enable this (Toornament does it).

A track: https://github.com/kmturley/touch-scroll


Related to #7

qlaffont commented 3 years ago

In fact, you can easely fix it with simple CSS :

.bracket-viewer {
  overflow-x: scroll;
  width: 100%;
}
Drarig29 commented 3 years ago

No, I mean really dragging with your mouse. Like if you move the mouse while holding the click, it will drag the view.

Drarig29 commented 3 years ago

Just try touch-scroll and you'll understand 😉