diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-05-16 01:33:59 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-05-16 01:33:59 +0200 |
commit | db8f7fdd64fc895827a9402eec2d5f4118e02d5b (patch) | |
tree | 7a50fab7ce331b4591b5095fd0a572ba713ee69e | |
parent | 601ab0e2494a91bc392fe89046a8166e098ff0d7 (diff) | |
download | svg.js-db8f7fdd64fc895827a9402eec2d5f4118e02d5b.tar.gz svg.js-db8f7fdd64fc895827a9402eec2d5f4118e02d5b.zip |
fixed small typo
-rw-r--r-- | src/morph.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/morph.js b/src/morph.js index b16be76..040e245 100644 --- a/src/morph.js +++ b/src/morph.js @@ -68,7 +68,7 @@ SVG.Morphable = SVG.invent({ } else if (Array.isArray(value)) { this.type(SVG.Array) - } else of (typeof value === 'object') { + } else if (typeof value === 'object') { this.type(SVG.ObjectBag) } else { |