From b3e76a4e23f6f1501c96aa77269a0ba44fabd50b Mon Sep 17 00:00:00 2001 From: Aku Kotkavuo Date: Fri, 17 May 2013 16:56:56 +0300 Subject: [PATCH] Fix variable leakage --- src/Node.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Node.js b/src/Node.js index b582f4a4..694d0b18 100644 --- a/src/Node.js +++ b/src/Node.js @@ -1117,7 +1117,7 @@ constructor.prototype[baseMethod] = function() { var pos = Kinetic.Util._getXY([].slice.call(arguments)), - oldVal = this.attrs[attr]; + oldVal = this.attrs[attr], x = 0, y = 0;