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

  // Inherit from
  inherit: SVG.Parent
})