diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2015-12-12 00:52:26 +0100 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2015-12-12 00:52:26 +0100 |
commit | 7f5996c844067925e099a8004e941bfb5034d6d8 (patch) | |
tree | 7ebb22c7f928a3c05987fdccefca61b84521c656 /dist/svg.js | |
parent | be3d3e8209635226f71f2e6e8ec5b0775279f53b (diff) | |
download | svg.js-7f5996c844067925e099a8004e941bfb5034d6d8.tar.gz svg.js-7f5996c844067925e099a8004e941bfb5034d6d8.zip |
updated changelog, fixed typo in doc and removed semicolon
Diffstat (limited to 'dist/svg.js')
-rw-r--r-- | dist/svg.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/svg.js b/dist/svg.js index fa11742..74adce7 100644 --- a/dist/svg.js +++ b/dist/svg.js @@ -6,7 +6,7 @@ * @copyright Wout Fierens <wout@impinc.co.uk> * @license MIT * -* BUILT: Fri Dec 11 2015 09:19:16 GMT-0600 (Central Standard Time) +* BUILT: Sat Dec 12 2015 00:50:35 GMT+0100 (Mitteleuropäische Zeit) */; (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() - 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() - this.targets = []; + this.targets = [] // remove clipPath from parent this.parent().removeElement(this) |