diff options
Diffstat (limited to 'src/modules/core/poly.js')
-rw-r--r-- | src/modules/core/poly.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/core/poly.js b/src/modules/core/poly.js index ad12020..f23b70b 100644 --- a/src/modules/core/poly.js +++ b/src/modules/core/poly.js @@ -10,7 +10,7 @@ export function array () { export function plot (p) { return (p == null) ? this.array() : this.clear().attr('points', typeof p === 'string' ? p - : (this._array = new PointArray(p))) + : (this._array = new PointArray(p))) } // Clear array cache |