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

  // Inherit from
, inherit: SVG.Parent

})