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