blob: ddad76c1327444520db55044ebe01bd7be19af24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
SVG.Use = SVG.invent({
// Initialize node
create: 'use'
// Inherit from
, inherit: SVG.Shape
// Add class methods
, extend: {
// Use element as a reference
element: function(element) {
// Store target element
this.target = element
// Set lined element
return this.attr('href', '#' + element, SVG.xlink)
}
}
// Add parent method
, construct: {
// Create a use element
use: function(element) {
return this.put(new SVG.Use).element(element)
}
}
})
|