mirror of
https://github.com/konvajs/konva.git
synced 2025-09-19 02:37:59 +08:00
fix #1016
This commit is contained in:
@@ -6431,7 +6431,7 @@ var Kinetic = {};
|
||||
|
||||
this.anim = new Kinetic.Animation(function() {
|
||||
that.tween.onEnterFrame();
|
||||
}, node.getLayer());
|
||||
}, node.getLayer() || ((node instanceof Kinetic.Stage) ? node.getLayers() : null));
|
||||
|
||||
this.tween = new Tween(key, function(i) {
|
||||
that._tweenFunc(i);
|
||||
|
6
kinetic.min.js
vendored
6
kinetic.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -48,7 +48,7 @@
|
||||
|
||||
this.anim = new Kinetic.Animation(function() {
|
||||
that.tween.onEnterFrame();
|
||||
}, node.getLayer());
|
||||
}, node.getLayer() || ((node instanceof Kinetic.Stage) ? node.getLayers() : null));
|
||||
|
||||
this.tween = new Tween(key, function(i) {
|
||||
that._tweenFunc(i);
|
||||
|
Reference in New Issue
Block a user