aboutsummaryrefslogtreecommitdiffstats
path: root/src/nested.js
blob: 9cf54a97d80fe9ac67315ed0cd549bc3e01aed3a (plain)
1
2
3
4
5
6
7
8
9
10
SVG.Nested = function Nested() {
  this.constructor.call(this, SVG.create('svg'));
  this.attr('overflow', 'visible');
};

// Inherit from SVG.Element
SVG.Nested.prototype = new SVG.Element();

// Include the container object
SVG.extend(SVG.Nested, SVG.Container);