diff options
author | wout <wout@impinc.co.uk> | 2013-01-04 19:12:16 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2013-01-04 19:12:16 +0100 |
commit | 2380c67d4ddded556617760b4b3cb38a1d7758e2 (patch) | |
tree | c0bd5ee57a4c83e5d8860becba7766188344eda3 /src/nested.js | |
parent | 40de19951d0a4218ee2625fa9a1a69f04e79692d (diff) | |
download | svg.js-2380c67d4ddded556617760b4b3cb38a1d7758e2.tar.gz svg.js-2380c67d4ddded556617760b4b3cb38a1d7758e2.zip |
Made code more readable and included docs
Diffstat (limited to 'src/nested.js')
-rw-r--r-- | src/nested.js | 5 |
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 |