]> source.dussan.org Git - svg.js.git/commitdiff
Build the final transformation code and fixed linting errors
authorSaivan <savian@me.com>
Sat, 3 Mar 2018 21:56:15 +0000 (08:56 +1100)
committerSaivan <savian@me.com>
Sat, 3 Mar 2018 21:56:15 +0000 (08:56 +1100)
dist/svg.js
src/sugar.js
src/transform.js

index f9957343cc993a2af8c08c979e45925d2695c81a..b276845f2ba5728cc6a335d309396a22a11ecddd 100644 (file)
@@ -6,7 +6,7 @@
 * @copyright Wout Fierens <wout@mick-wout.com>
 * @license MIT
 *
-* BUILT: Sun Mar 04 2018 01:42:31 GMT+1100 (AEDT)
+* BUILT: Sun Mar 04 2018 08:55:46 GMT+1100 (AEDT)
 */;
 
 (function(root, factory) {
@@ -2774,7 +2774,7 @@ SVG.extend(SVG.Element, {
   // same as above with parent equals root-svg
   toDoc: function () {
     return this.toParent(this.doc())
-  },
+  }
 })
 
 SVG.extend(SVG.Element, {
@@ -4931,7 +4931,7 @@ SVG.extend([SVG.Element, SVG.FX], {
 
   // Map flip to transform
   flip: function (direction, around) {
-    var directionString = typeof direction == 'string' ? direction
+    var directionString = typeof direction === 'string' ? direction
       : isFinite(direction) ? 'both'
       : 'both'
     var origin = (direction === 'both' && isFinite(around)) ? [around, around]
index add423cf4503446f3b95f89813843c0d15bc0717..7a64a7678e3fd7d1113c535f809152c05f2b8c6d 100644 (file)
@@ -75,7 +75,7 @@ SVG.extend([SVG.Element, SVG.FX], {
 
   // Map flip to transform
   flip: function (direction, around) {
-    var directionString = typeof direction == 'string' ? direction
+    var directionString = typeof direction === 'string' ? direction
       : isFinite(direction) ? 'both'
       : 'both'
     var origin = (direction === 'both' && isFinite(around)) ? [around, around]
index 643419cbcd1249263851a5a7f73f7ac43f7047f6..0f6d775a1dfad91db5de41c5478edb82bfe95136 100644 (file)
@@ -44,7 +44,7 @@ SVG.extend(SVG.Element, {
   // same as above with parent equals root-svg
   toDoc: function () {
     return this.toParent(this.doc())
-  },
+  }
 })
 
 SVG.extend(SVG.Element, {