aboutsummaryrefslogtreecommitdiffstats
path: root/src/group.js
blob: da44e27509f0e79a0f5aa95df419da2e6f3859f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);

SVG.extend(SVG.G, {
  
  defs: function() {
    return this.parentDoc().defs();
  }
  
});