blob: d2aafdb590975a0bd581e5a09622535d4ec1596a (
plain)
1
2
3
4
5
6
7
|
SVG.Nested = function Nested() {
this.constructor.call(this, SVG.create('svg'));
this.attr('overflow', 'visible');
};
// Inherit from SVG.Container
SVG.Nested.prototype = new SVG.Container();
|