diff options
Diffstat (limited to 'src/path.js')
-rw-r--r-- | src/path.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/path.js b/src/path.js index 041027b..db3929b 100644 --- a/src/path.js +++ b/src/path.js @@ -1,3 +1,5 @@ +/* global proportionalSize */ + SVG.Path = SVG.invent({ // Initialize node create: 'path', @@ -8,7 +10,7 @@ SVG.Path = SVG.invent({ // Add class methods extend: { // Define morphable array - morphArray: SVG.PathArray, + MorphArray: SVG.PathArray, // Get array array: function () { return this._array || (this._array = new SVG.PathArray(this.attr('d'))) |