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

// Inherit from SVG.Container
SVG.G.prototype = new SVG.Container();

SVG.extend(SVG.G, {
  // Get defs
  defs: function() {
    return this.doc().defs();
  }
  
});