aboutsummaryrefslogtreecommitdiffstats
path: root/src/wrap.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/wrap.js')
-rw-r--r--src/wrap.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wrap.js b/src/wrap.js
index 85a09a6..0ae3a03 100644
--- a/src/wrap.js
+++ b/src/wrap.js
@@ -1,4 +1,4 @@
-function Wrap(element) {
+SVG.Wrap = function Wrap(element) {
this.constructor.call(this, SVG.create('g'));
/* insert and store child */
@@ -7,9 +7,9 @@ function Wrap(element) {
};
// inherit from SVG.Shape
-Wrap.prototype = new SVG.Shape();
+SVG.Wrap.prototype = new SVG.Shape();
-SVG.extend(Wrap, {
+SVG.extend(SVG.Wrap, {
// Move wrapper around
move: function(x, y) {
return this.center(