Skip to content

Commit

Permalink
#1699: Fixed multiplying ghost transform
Browse files Browse the repository at this point in the history
  • Loading branch information
owen-m1 committed Dec 25, 2019
1 parent de5e7a4 commit aae2c97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Sortable.js
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ Sortable.prototype = /** @lends Sortable.prototype */ {
fallbackTolerance = options.fallbackTolerance,
fallbackOffset = options.fallbackOffset,
touch = evt.touches ? evt.touches[0] : evt,
ghostMatrix = ghostEl && matrix(ghostEl),
ghostMatrix = ghostEl && matrix(ghostEl, true),
scaleX = ghostEl && ghostMatrix && ghostMatrix.a,
scaleY = ghostEl && ghostMatrix && ghostMatrix.d,
relativeScrollOffset = PositionGhostAbsolutely && ghostRelativeParent && getRelativeScrollOffset(ghostRelativeParent),
Expand Down

0 comments on commit aae2c97

Please sign in to comment.