aboutsummaryrefslogtreecommitdiffstats
path: root/src/animation/Morphable.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/animation/Morphable.js')
-rw-r--r--src/animation/Morphable.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/animation/Morphable.js b/src/animation/Morphable.js
index 56ffe95..0f191c9 100644
--- a/src/animation/Morphable.js
+++ b/src/animation/Morphable.js
@@ -90,7 +90,12 @@ export default class Morphable {
this._morphObj = this._morphObj || new this._type()
this._context = this._context
- || Array.apply(null, Array(result.length)).map(Object)
+ || Array.apply(null, Array(result.length))
+ .map(Object)
+ .map(function (o) {
+ o.done = true
+ return o
+ })
return result
}