Commit 3a458862 authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix bug 34191

parent b7fbb901
......@@ -1608,6 +1608,9 @@
} else if (undefined !== event.detail && 0 !== event.detail) {
// FF
deltaY = event.detail;
} else if (undefined !== event.deltaY && 0 !== event.deltaY) {
// FF
deltaY = event.deltaY;
}
if (event.axis !== undefined && event.axis === event.HORIZONTAL_AXIS) {
deltaX = deltaY;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment