diff options
Diffstat (limited to 'src/Path.js')
-rw-r--r-- | src/Path.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Path.js b/src/Path.js index 7ed3c13..42ab411 100644 --- a/src/Path.js +++ b/src/Path.js @@ -1,12 +1,12 @@ import {proportionalSize} from './helpers.js' import {nodeOrNew} from './tools.js' -import Base from './Base.js' +import Shape from './Shape.js' import PathArray from './PathArray.js' import find from './selector.js' import {register} from './adopter.js' import {registerMethods} from './methods.js' -export default class Path extends Base { +export default class Path extends Shape { // Initialize node constructor (node) { super(nodeOrNew('path', node), Path) |