From 24f0535bb6444ffd701680375bf254906cc9c7f3 Mon Sep 17 00:00:00 2001 From: Justin Ridgewell Date: Sat, 15 Sep 2012 19:59:53 -0400 Subject: [PATCH] Convert tabs to 4 spaces --- src/svg/ImportSVG.js | 62 ++++++++++++++++++++++---------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/src/svg/ImportSVG.js b/src/svg/ImportSVG.js index d1dfa3a3..6951f521 100644 --- a/src/svg/ImportSVG.js +++ b/src/svg/ImportSVG.js @@ -6,49 +6,49 @@ var ImportSVG = function() { - //initialize - function initialize() - { + //initialize + function initialize() + { - }; + }; - /** - * - * Takes the svg dom obj and parses the data - * to create a layer with groups (if needed) with - * items inside. Should support nested groups. - * - * takes in a svg object (xml dom) - * returns Paper.js Layer - */ + /** + * + * Takes the svg dom obj and parses the data + * to create a layer with groups (if needed) with + * items inside. Should support nested groups. + * + * takes in a svg object (xml dom) + * returns Paper.js Layer + */ this.importSVG = function(svg) { - return layer; + return layer; }; - /** - * Creates a Paper.js Group by parsing - * a specific svg g node - * - * takes in a svg object (xml dom) - * returns Paper.js Group - */ + /** + * Creates a Paper.js Group by parsing + * a specific svg g node + * + * takes in a svg object (xml dom) + * returns Paper.js Group + */ function importGroup(svg) { - return group; + return group; }; - /** - * Creates a Paper.js Path by parsing - * a specific svg node (rect, path, circle, polygon, etc) - * and creating the right path object based on the svg type. - * - * takes in a svg object (xml dom) - * returns Paper.js Group - */ + /** + * Creates a Paper.js Path by parsing + * a specific svg node (rect, path, circle, polygon, etc) + * and creating the right path object based on the svg type. + * + * takes in a svg object (xml dom) + * returns Paper.js Group + */ function importPath(svg) { - return path; + return path; }; initialize(); // calls the init function after class is loaded