mirror of
https://github.com/konvajs/konva.git
synced 2025-09-18 09:50:05 +08:00
Merge pull request #338 from arkx/master
Fix leakages in Kinetic.Transition
This commit is contained in:
@@ -14,10 +14,10 @@
|
||||
Kinetic.Transition = function(node, config) {
|
||||
var that = this,
|
||||
easing = config.easing || 'linear',
|
||||
easingFunc = Kinetic.Tweens[easing];
|
||||
easingFunc = Kinetic.Tweens[easing],
|
||||
duration = config.duration || 0,
|
||||
configVal = null,
|
||||
lastTweenIndex = 0;
|
||||
lastTweenIndex = 0,
|
||||
obj = {},
|
||||
x = 0,
|
||||
y = 0;
|
||||
|
Reference in New Issue
Block a user