aboutsummaryrefslogtreecommitdiffstats
path: root/src/use.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/use.js')
-rw-r--r--src/use.js36
1 files changed, 16 insertions, 20 deletions
diff --git a/src/use.js b/src/use.js
index 2b8e65e..9cf1711 100644
--- a/src/use.js
+++ b/src/use.js
@@ -1,25 +1,21 @@
+import {Shape, Container} from './classes.js'
+import {xlink} from './namespaces.js'
-SVG.Use = SVG.invent({
- // Initialize node
- create: 'use',
-
- // Inherit from
- inherit: SVG.Shape,
+export default class Use extends Shape {
+ constructor (node) {
+ super(nodeOrNew('use', node))
+ }
- // Add class methods
- extend: {
- // Use element as a reference
- element: function (element, file) {
- // Set lined element
- return this.attr('href', (file || '') + '#' + element, SVG.xlink)
- }
- },
+ // Use element as a reference
+ element (element, file) {
+ // Set lined element
+ return this.attr('href', (file || '') + '#' + element, xlink)
+ }
+}
- // Add parent method
- construct: {
- // Create a use element
- use: function (element, file) {
- return this.put(new SVG.Use()).element(element, file)
- }
+addFactory(Container, {
+ // Create a use element
+ use: function (element, file) {
+ return this.put(new Use()).element(element, file)
}
})