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

  // Inherit from
  inherit: SVG.Parent
})