diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-06-28 23:15:31 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-06-28 23:15:31 +0200 |
commit | 6ff9882c7c85fcd399b9c623f60d5d466cdbb99b (patch) | |
tree | 0bea5feb7403456b78d6f2264b9198e405cd40c5 /src/matrix.js | |
parent | 4009da2e223e197a98bb79afd68c0a6753e0c37e (diff) | |
download | svg.js-6ff9882c7c85fcd399b9c623f60d5d466cdbb99b.tar.gz svg.js-6ff9882c7c85fcd399b9c623f60d5d466cdbb99b.zip |
satisfy linter, fix global var
Diffstat (limited to 'src/matrix.js')
-rw-r--r-- | src/matrix.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/matrix.js b/src/matrix.js index 31d3d58..05e9c7d 100644 --- a/src/matrix.js +++ b/src/matrix.js @@ -103,7 +103,7 @@ SVG.Matrix = SVG.invent({ }, // Decomposes this matrix into its affine parameters - decompose: function (cx=0, cy=0) { + decompose: function (cx = 0, cy = 0) { // Get the parameters from the matrix var a = this.a var b = this.b |