Currently, panning in Firefox is much slower than in Chrome, IE, etc.
I've tracked this down to the the fact that Firefox uses DOM_DELTA_LINE or DOM_DELTA_PAGE as the delta mode for the WheelEvent object. Since the rate at which a user scrolls in lines will almost always be lower than the rate they scroll in pixels, this results in a slower panning speed.
Honestly, I don't know if fixing this is worth the trouble (a user can always just adjust their scroll modifier), however I figure this might be something worth noting.
Currently, panning in Firefox is much slower than in Chrome, IE, etc.
I've tracked this down to the the fact that Firefox uses DOM_DELTA_LINE or DOM_DELTA_PAGE as the delta mode for the WheelEvent object. Since the rate at which a user scrolls in lines will almost always be lower than the rate they scroll in pixels, this results in a slower panning speed.
Honestly, I don't know if fixing this is worth the trouble (a user can always just adjust their scroll modifier), however I figure this might be something worth noting.