aboutsummaryrefslogtreecommitdiffstats
path: root/src/group.js
blob: e3cb6a8df7854e0c85f73117a80f10f28d514a27 (plain)
1
2
3
4
5
6
7
8
9
10
SVG.G = function G() {
  this.constructor.call(this, SVG.create('g'));
};

// inherit from SVG.Element
SVG.G.prototype = new SVG.Element();

// include the container object
SVG.extend(SVG.G, SVG.Container);