From 8ca26f650a01f66876364fe4770f32dd519e3308 Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Tue, 20 Nov 2012 15:53:31 +0000 Subject: [PATCH] Fixed leaky _handle2 --- src/path/Path.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/path/Path.js b/src/path/Path.js index c2a535ff..3dc6ce66 100644 --- a/src/path/Path.js +++ b/src/path/Path.js @@ -1691,8 +1691,8 @@ var Path = this.Path = PathItem.extend(/** @lends Path# */{ }, cubicCurveTo: function(handle1, handle2, to) { - var _handle1 = Point.read(arguments); - _handle2 = Point.read(arguments); + var _handle1 = Point.read(arguments), + _handle2 = Point.read(arguments), _to = Point.read(arguments); // First modify the current segment: var current = getCurrentSegment(this);