diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2015-10-11 21:55:58 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2015-10-11 21:55:58 +0200 |
commit | 8617a6b5d5ff147718051a7fc582c54f603aa90f (patch) | |
tree | ca846f068683b23efe2b38b1b4dab0be6ec789e9 /src/gradient.js | |
parent | ebf3dc52374159ebb64663a842f5704237934401 (diff) | |
download | svg.js-8617a6b5d5ff147718051a7fc582c54f603aa90f.tar.gz svg.js-8617a6b5d5ff147718051a7fc582c54f603aa90f.zip |
fixed mask animation in Firefox (#287)
Diffstat (limited to 'src/gradient.js')
-rw-r--r-- | src/gradient.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gradient.js b/src/gradient.js index 45816c7..a69b29c 100644 --- a/src/gradient.js +++ b/src/gradient.js @@ -36,7 +36,7 @@ SVG.Gradient = SVG.invent({ return this.fill() } // custom attr to handle transform - , attr: function(a, b, c) {console.log('hallo') + , attr: function(a, b, c) { if(a == 'transform') a = 'gradientTransform' return SVG.Container.prototype.attr.call(this, a, b, c) } |