diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-05-27 23:04:21 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-05-27 23:04:21 +0200 |
commit | 6a85fb99391e73ee551e4913f9199d426ddf93c7 (patch) | |
tree | e40b4996ca54ecf57f913c54a60f3efb361b8623 /src/helpers.js | |
parent | cbf1359e0ab469e1137450192b7d612501c4bb5c (diff) | |
download | svg.js-6a85fb99391e73ee551e4913f9199d426ddf93c7.tar.gz svg.js-6a85fb99391e73ee551e4913f9199d426ddf93c7.zip |
satisfy linter
Diffstat (limited to 'src/helpers.js')
-rw-r--r-- | src/helpers.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/helpers.js b/src/helpers.js index 84b78ad..fca14df 100644 --- a/src/helpers.js +++ b/src/helpers.js @@ -206,7 +206,6 @@ function closeEnough (a, b, threshold) { // TODO: Refactor this to a static function of matrix.js function formatTransforms (o) { - // Get all of the parameters required to form the matrix var flipBoth = o.flip === 'both' || o.flip === true var flipX = o.flip && (flipBoth || o.flip === 'x') ? -1 : 1 @@ -257,6 +256,6 @@ function formatTransforms (o) { ox: ox, oy: oy, px: px, - py: py, + py: py } } |