]> source.dussan.org Git - svg.js.git/commitdiff
satisfy linter, fix global var
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Thu, 28 Jun 2018 21:15:31 +0000 (23:15 +0200)
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Thu, 28 Jun 2018 21:15:31 +0000 (23:15 +0200)
dist/svg.js
src/helpers.js
src/matrix.js
src/transform.js

index aa9984bde43b5f12fda807702e51c9f7f26fa36b..bf890c5e674c0f384a2fb5daa62cc069dbbef7c4 100644 (file)
@@ -6,7 +6,7 @@
 * @copyright Wout Fierens <wout@mick-wout.com>
 * @license MIT
 *
-* BUILT: Thu Jun 28 2018 22:52:04 GMT+0200 (GMT+02:00)
+* BUILT: Thu Jun 28 2018 23:06:53 GMT+0200 (GMT+02:00)
 */;
 \r
 (function(root, factory) {\r
@@ -1736,7 +1736,7 @@ SVG.Matrix = SVG.invent({
     },\r
 \r
     // Decomposes this matrix into its affine parameters\r
-    decompose: function (cx=0, cy=0) {\r
+    decompose: function (cx = 0, cy = 0) {\r
       // Get the parameters from the matrix\r
       var a = this.a\r
       var b = this.b\r
@@ -2171,7 +2171,7 @@ SVG.extend(SVG.Element, {
   }\r
 })\r
 
-/* global arrayToMatrix */\r
+/* global arrayToMatrix getOrigin */\r
 \r
 SVG.extend(SVG.Element, {\r
   // Reset all transformations\r
@@ -2231,7 +2231,7 @@ SVG.extend(SVG.Element, {
     }\r
 \r
     // Set the origin according to the defined transform\r
-    o.origin = getOrigin (o, this)\r
+    o.origin = getOrigin(o, this)\r
 \r
     // The user can pass a boolean, an SVG.Element or an SVG.Matrix or nothing\r
     var cleanRelative = relative === true ? this : (relative || false)\r
@@ -4453,10 +4453,10 @@ function formatTransforms (o) {
 \r
 function getOrigin (o, element) {\r
   // Allow origin or around as the names\r
-  origin = o.around == null ? o.origin : o.around\r
+  let origin = o.around == null ? o.origin : o.around\r
 \r
   // Allow the user to pass a string to rotate around a given point\r
-  if ( typeof origin === 'string' || origin == null ) {\r
+  if (typeof origin === 'string' || origin == null) {\r
     // Get the bounding box of the element with no transformations applied\r
     const string = (origin || 'center').toLowerCase().trim()\r
     const { height, width, x, y } = element.bbox()\r
index 9159b4f1623c2f74341e13cfa8c62128ac774200..99a7c0b9b60f3d18a1361cbb35ed2aa933e212b2 100644 (file)
@@ -262,10 +262,10 @@ function formatTransforms (o) {
 
 function getOrigin (o, element) {
   // Allow origin or around as the names
-  origin = o.around == null ? o.origin : o.around
+  let origin = o.around == null ? o.origin : o.around
 
   // Allow the user to pass a string to rotate around a given point
-  if ( typeof origin === 'string' || origin == null ) {
+  if (typeof origin === 'string' || origin == null) {
     // Get the bounding box of the element with no transformations applied
     const string = (origin || 'center').toLowerCase().trim()
     const { height, width, x, y } = element.bbox()
index 31d3d58a97a8a4a29c836610b79a8512e2ba9114..05e9c7d96bfb208434a025459f4d4405fb9dcd0d 100644 (file)
@@ -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
index 6b4016183a75e1daba7efc922ae4a63650ad9090..c769f533ee98c23fb8546c28d5ffa90a1accd174 100644 (file)
@@ -1,4 +1,4 @@
-/* global arrayToMatrix */
+/* global arrayToMatrix getOrigin */
 
 SVG.extend(SVG.Element, {
   // Reset all transformations
@@ -58,7 +58,7 @@ SVG.extend(SVG.Element, {
     }
 
     // Set the origin according to the defined transform
-    o.origin = getOrigin (o, this)
+    o.origin = getOrigin(o, this)
 
     // The user can pass a boolean, an SVG.Element or an SVG.Matrix or nothing
     var cleanRelative = relative === true ? this : (relative || false)