aboutsummaryrefslogtreecommitdiffstats
path: root/src/mask.js
diff options
context:
space:
mode:
authorwout <wout@impinc.co.uk>2014-06-21 18:25:29 +0200
committerwout <wout@impinc.co.uk>2014-06-21 18:25:29 +0200
commit19b6fd4338246d1fd9ca4806e57c7aebcec63826 (patch)
tree3dd1d207de9f586f7e4d4cd36917e347ab022a9e /src/mask.js
parentbb0e6be2da0cea98c5303871c0be055f5f70d7a9 (diff)
downloadsvg.js-19b6fd4338246d1fd9ca4806e57c7aebcec63826.tar.gz
svg.js-19b6fd4338246d1fd9ca4806e57c7aebcec63826.zip
Removed all structural references
Diffstat (limited to 'src/mask.js')
-rwxr-xr-xsrc/mask.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mask.js b/src/mask.js
index 84d75b8..73f29c2 100755
--- a/src/mask.js
+++ b/src/mask.js
@@ -21,7 +21,7 @@ SVG.Mask = SVG.invent({
delete this.targets
/* remove mask from parent */
- this.parent.removeElement(this)
+ this.parent().removeElement(this)
return this
}
@@ -41,7 +41,7 @@ SVG.extend(SVG.Element, {
// Distribute mask to svg element
maskWith: function(element) {
/* use given mask or create a new one */
- this.masker = element instanceof SVG.Mask ? element : this.parent.mask().add(element)
+ this.masker = element instanceof SVG.Mask ? element : this.parent().mask().add(element)
/* store reverence on self in mask */
this.masker.targets.push(this)