From 4f358aeb17a83e2a41a08c893b7df32f4e031d7d Mon Sep 17 00:00:00 2001 From: Scott DeSapio Date: Mon, 27 Jun 2016 07:56:51 -0500 Subject: [PATCH] Added fallbackOffset = options.fallbackOffset, and this.options.fallbackOffset -> fallbackOffset --- Sortable.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Sortable.js b/Sortable.js index 5bf9680..0b528c0 100644 --- a/Sortable.js +++ b/Sortable.js @@ -513,9 +513,10 @@ if (tapEvt) { var options = this.options, fallbackTolerance = options.fallbackTolerance, + fallbackOffset = options.fallbackOffset, touch = evt.touches ? evt.touches[0] : evt, - dx = (touch.clientX - tapEvt.clientX) + this.options.fallbackOffset.x, - dy = (touch.clientY - tapEvt.clientY) + this.options.fallbackOffset.y, + dx = (touch.clientX - tapEvt.clientX) + fallbackOffset.x, + dy = (touch.clientY - tapEvt.clientY) + fallbackOffset.y, translate3d = evt.touches ? 'translate3d(' + dx + 'px,' + dy + 'px,0)' : 'translate(' + dx + 'px,' + dy + 'px)'; // only set the status to dragging, when we are actually dragging -- GitLab