summaryrefslogtreecommitdiffstats
path: root/dist/svg.js
diff options
context:
space:
mode:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2015-06-19 11:50:30 +0200
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2015-06-19 11:50:30 +0200
commitae7052db3c89d33af7ca9b1a8132e99103b73614 (patch)
treec7dce182d24fc33be5aa43cf045a2ca8f85c6a6f /dist/svg.js
parent0d6459729c2508d2631894b004d74961fe99d334 (diff)
downloadsvg.js-ae7052db3c89d33af7ca9b1a8132e99103b73614.tar.gz
svg.js-ae7052db3c89d33af7ca9b1a8132e99103b73614.zip
Fixed bug in fx when animating with `plot()` (closes #354)
Diffstat (limited to 'dist/svg.js')
-rwxr-xr-xdist/svg.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/svg.js b/dist/svg.js
index ea2672c..fe32f0a 100755
--- a/dist/svg.js
+++ b/dist/svg.js
@@ -6,7 +6,7 @@
* @copyright Wout Fierens <wout@impinc.co.uk>
* @license MIT
*
-* BUILT: Wed Jun 17 2015 15:45:48 GMT+0200 (Mitteleuropäische Sommerzeit)
+* BUILT: Fri Jun 19 2015 11:48:00 GMT+0200 (Mitteleuropäische Sommerzeit)
*/;
(function(root, factory) {
@@ -1165,7 +1165,7 @@ SVG.FX = SVG.invent({
if (element.morphArray && (fx.destination.plot || akeys.indexOf('points') > -1)) {
// get destination
var box
- , p = new element.morphArray(fx.destination.plot || fx.attrs.points || element.array)
+ , p = new element.morphArray(fx.destination.plot || fx.attrs.points || element.array())
// add size
if (fx.destination.size)
@@ -1186,7 +1186,7 @@ SVG.FX = SVG.invent({
// reset destination values
fx.destination = {
- plot: element.array.morph(p)
+ plot: element.array().morph(p)
}
}
}