Fix typo in touch handler.

This commit is contained in:
Hyunje Alex Jun 2015-01-30 23:34:15 +00:00
parent a52a945226
commit b000c771af

View File

@ -34,7 +34,7 @@ function bindTouchHandler(element, i, supportsTouch, supportsIePointer) {
function applyTouchMove(differenceX, differenceY) {
element.scrollTop = element.scrollTop - differenceY;
element.scrollLeft = element.scrollLeft() - differenceX;
element.scrollLeft = element.scrollLeft - differenceX;
updateGeometry(element);
}