diff options
Diffstat (limited to 'src/container.js')
-rw-r--r-- | src/container.js | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/container.js b/src/container.js index e620041..1abf6ad 100644 --- a/src/container.js +++ b/src/container.js @@ -1,10 +1,9 @@ SVG.Container = SVG.invent({ // Initialize node - create: function(node) { + create: function (node) { this.constructor.call(this, node) - } + }, // Inherit from -, inherit: SVG.Parent - -})
\ No newline at end of file + inherit: SVG.Parent +}) |