summaryrefslogtreecommitdiffstats
path: root/src/nested.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/nested.js')
-rw-r--r--src/nested.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nested.js b/src/nested.js
index a2944c1..9cf54a9 100644
--- a/src/nested.js
+++ b/src/nested.js
@@ -1,11 +1,10 @@
-
SVG.Nested = function Nested() {
this.constructor.call(this, SVG.create('svg'));
this.attr('overflow', 'visible');
};
-// inherit from SVG.Element
+// Inherit from SVG.Element
SVG.Nested.prototype = new SVG.Element();
-// include the container object
+// Include the container object
SVG.extend(SVG.Nested, SVG.Container); \ No newline at end of file