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