blob: e7baf5303b52ceab6934b1967ebfc03ac142e829 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
SVG.Symbol = SVG.invent({
// Initialize node
create: 'symbol'
// Inherit from
, inherit: SVG.Container
, construct: {
// create symbol
symbol: function() {
return this.put(new SVG.Symbol)
}
}
})
|