From b600ebcb9781c1d11e64c703bc7e52ce28fbe493 Mon Sep 17 00:00:00 2001 From: Dmitry Baranovskiy Date: Tue, 16 Jun 2009 14:48:39 +1000 Subject: [PATCH] Yet another fix for path stuff --- raphael.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/raphael.js b/raphael.js index b9f8d5e..2faddf4 100644 --- a/raphael.js +++ b/raphael.js @@ -318,7 +318,10 @@ window.Raphael = (function () { } } } else { - res[i] = pa; + r = res[i] = []; + for (var k = 0, kk = pa.length; k < kk; k++) { + res[i][k] = pa[k]; + } } switch (res[i][0]) { case "z": -- 2.39.2