diff options
Diffstat (limited to 'src/group.js')
-rw-r--r-- | src/group.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/group.js b/src/group.js index 1007a32..da44e27 100644 --- a/src/group.js +++ b/src/group.js @@ -1,12 +1,11 @@ - SVG.G = function G() { this.constructor.call(this, SVG.create('g')); }; -// inherit from SVG.Element +// Inherit from SVG.Element SVG.G.prototype = new SVG.Element(); -// include the container object +// Include the container object SVG.extend(SVG.G, SVG.Container); SVG.extend(SVG.G, { |