From af1c6830e027fead00c4fd9bd7b0a1640307a0a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Sat, 2 Nov 2013 21:26:32 +0100 Subject: [PATCH] Small variable name change. --- src/svg/SVGImport.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/svg/SVGImport.js b/src/svg/SVGImport.js index cd2b6f68..540c7f6f 100644 --- a/src/svg/SVGImport.js +++ b/src/svg/SVGImport.js @@ -501,9 +501,9 @@ new function() { options = { onLoad: options }; // Remember current scope so we can restore it in the callback. var scope = paper; - return Http.request('get', node, function(xml) { + return Http.request('get', node, function(svg) { paper = scope; - var item = importSVG(xml, isRoot, options), + var item = importSVG(svg, isRoot, options), onLoad = options.onLoad, view = scope.project && scope.project.view; if (onLoad)