summaryrefslogtreecommitdiffstats
path: root/src/mask.js
diff options
context:
space:
mode:
authorwout <wout@impinc.co.uk>2013-01-22 17:54:28 +0100
committerwout <wout@impinc.co.uk>2013-01-22 17:54:28 +0100
commitb72373cf2fc024714825da95c59879ce9cbb4521 (patch)
tree1f3b260f9d2da54d1df7bca7b540bb15a0863e55 /src/mask.js
parent6ae497706394d96b87e045afa8c7260790c4a7f1 (diff)
downloadsvg.js-b72373cf2fc024714825da95c59879ce9cbb4521.tar.gz
svg.js-b72373cf2fc024714825da95c59879ce9cbb4521.zip
Fix in offset for SVG.Wrap
Diffstat (limited to 'src/mask.js')
-rw-r--r--src/mask.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mask.js b/src/mask.js
index b5baa14..e7e94a4 100644
--- a/src/mask.js
+++ b/src/mask.js
@@ -2,8 +2,7 @@ SVG.Mask = function Mask() {
this.constructor.call(this, SVG.create('mask'));
/* set unique id */
- this.id = 'svgjs_' + (SVG.did++);
- this.attr('id', this.id);
+ this.attr('id', (this.id = 'svgjs_element_' + (SVG.did++)));
};
// Inherit from SVG.Element