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

// Inherit from SVG.Container
SVG.Nested.prototype = new SVG.Container