summaryrefslogtreecommitdiffstats
path: root/dist/svg.js
diff options
context:
space:
mode:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2015-12-11 16:30:37 +0100
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2015-12-11 16:30:37 +0100
commitbe3d3e8209635226f71f2e6e8ec5b0775279f53b (patch)
tree89f5eda6a0fe743b26690cec382e2a65b0196462 /dist/svg.js
parentb564704285fd27194e6420250275682bd6363557 (diff)
parent291892690aa68d6a3fae2aa65597b38e8315da42 (diff)
downloadsvg.js-be3d3e8209635226f71f2e6e8ec5b0775279f53b.tar.gz
svg.js-be3d3e8209635226f71f2e6e8ec5b0775279f53b.zip
Merge pull request #430 from rdfriedl/master
fixes for issue #429
Diffstat (limited to 'dist/svg.js')
-rw-r--r--dist/svg.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/svg.js b/dist/svg.js
index d9e3564..fa11742 100644
--- a/dist/svg.js
+++ b/dist/svg.js
@@ -6,7 +6,7 @@
* @copyright Wout Fierens <wout@impinc.co.uk>
* @license MIT
*
-* BUILT: Tue Dec 08 2015 13:52:24 GMT+0000 (GMT Standard Time)
+* BUILT: Fri Dec 11 2015 09:19:16 GMT-0600 (Central Standard Time)
*/;
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
@@ -2777,7 +2777,7 @@ SVG.Mask = SVG.invent({
for (var i = this.targets.length - 1; i >= 0; i--)
if (this.targets[i])
this.targets[i].unmask()
- delete this.targets
+ this.targets = [];
// remove mask from parent
this.parent().removeElement(this)
@@ -2836,7 +2836,7 @@ SVG.ClipPath = SVG.invent({
for (var i = this.targets.length - 1; i >= 0; i--)
if (this.targets[i])
this.targets[i].unclip()
- delete this.targets
+ this.targets = [];
// remove clipPath from parent
this.parent().removeElement(this)