aboutsummaryrefslogtreecommitdiffstats
path: root/dist
diff options
context:
space:
mode:
authorSaivan <savian@me.com>2018-03-04 08:56:15 +1100
committerSaivan <savian@me.com>2018-03-04 08:56:15 +1100
commit59efb1e9e9b3b03ed5040d60b9576278bfd66399 (patch)
tree901fb26803179316a8d738a3b488a9cbc155f4ea /dist
parentfe402538f24ee8fc1c4d378bb6776a0a217d6740 (diff)
downloadsvg.js-59efb1e9e9b3b03ed5040d60b9576278bfd66399.tar.gz
svg.js-59efb1e9e9b3b03ed5040d60b9576278bfd66399.zip
Build the final transformation code and fixed linting errors
Diffstat (limited to 'dist')
-rw-r--r--dist/svg.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/svg.js b/dist/svg.js
index f995734..b276845 100644
--- a/dist/svg.js
+++ b/dist/svg.js
@@ -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]