aboutsummaryrefslogtreecommitdiffstats
path: root/src/container.js
blob: e620041f26cb05eb896284cd3d3c83393edac760 (plain)
1
2
3
4
5
6
7
8
9
10
SVG.Container = SVG.invent({
  // Initialize node
  create: function(node) {
    this.constructor.call(this, node)
  }

  // Inherit from
, inherit: SVG.Parent

})