damiencorpataux / jquery-smokeping-zoom

jQuery javascript plugin for zooming smokeping graphs, standalone.
0 stars 0 forks source link

Touchpad scrolling speed is weird #8

Open damiencorpataux opened 10 years ago

damiencorpataux commented 10 years ago

Zooming with mouse wheel is fine. Zooming with Macbook touchpad is way to sensitive. What about other touchpad types ?

Some clues about a similar issue: https://github.com/darsain/sly/pull/57

damiencorpataux commented 10 years ago

Start of an idea:

             // Ignores long touchpad finger-scroll length
             // FIXME: tested on: Macbook, Mountain Lion
             if (Math.abs(dY)>1) dY = 0;