summaryrefslogtreecommitdiffstats
path: root/dist/svg.js
diff options
context:
space:
mode:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2017-02-28 13:50:08 +0100
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2017-02-28 13:50:08 +0100
commitfa5b44bad00b9a44de551552510a07ea94200386 (patch)
tree0e3d609273937251bb3d862b91f5c699edb719bf /dist/svg.js
parent659fc06e7e2e916379bd105bf7908ab77877acd3 (diff)
downloadsvg.js-fa5b44bad00b9a44de551552510a07ea94200386.tar.gz
svg.js-fa5b44bad00b9a44de551552510a07ea94200386.zip
added tests to increase code coverage
Diffstat (limited to 'dist/svg.js')
-rw-r--r--dist/svg.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/dist/svg.js b/dist/svg.js
index ed8162c..a120e9b 100644
--- a/dist/svg.js
+++ b/dist/svg.js
@@ -6,7 +6,7 @@
* @copyright Wout Fierens <wout@mick-wout.com>
* @license MIT
*
-* BUILT: Tue Feb 28 2017 12:01:38 GMT+0100 (Mitteleuropäische Zeit)
+* BUILT: Tue Feb 28 2017 13:49:34 GMT+0100 (Mitteleuropäische Zeit)
*/;
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
@@ -2317,6 +2317,8 @@ SVG.Matrix = SVG.invent({
stringToMatrix(source) :
arguments.length == 6 ?
arrayToMatrix([].slice.call(arguments)) :
+ Array.isArray(source) ?
+ arrayToMatrix(source) :
typeof source === 'object' ?
source : base
@@ -4919,7 +4921,7 @@ SVG.extend(SVG.Element, SVG.FX, {
}
// Map matrix to transform
, matrix: function(m) {
- return this.attr('transform', new SVG.Matrix(m))
+ return this.attr('transform', new SVG.Matrix(arguments.length == 6 ? [].slice.call(arguments) : m))
}
// Opacity
, opacity: function(value) {