10 lines
169 B
JavaScript
10 lines
169 B
JavaScript
SVG.Container = SVG.invent({
|
|
// Initialize node
|
|
create: function(element) {
|
|
this.constructor.call(this, element)
|
|
}
|
|
|
|
// Inherit from
|
|
, inherit: SVG.Parent
|
|
|
|
}) |