From db6e712203644a8c6a7a103b303d5aa2b60dfb7f Mon Sep 17 00:00:00 2001 From: jaroles Date: Sun, 30 Sep 2012 22:13:09 -0300 Subject: [PATCH] Update examples/ExportSVGTests/Line Testing.html --- examples/ExportSVGTests/Line Testing.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/examples/ExportSVGTests/Line Testing.html b/examples/ExportSVGTests/Line Testing.html index 97e1a874..0a249da2 100644 --- a/examples/ExportSVGTests/Line Testing.html +++ b/examples/ExportSVGTests/Line Testing.html @@ -19,7 +19,7 @@ y2 = 45; var line1 = new Path.Line([x1, y1], [x2, y2]); line1.strokeColor = "blue"; - line1.strokeWidth = "10px"; + line1.strokeWidth = "10"; var x3 = 20, x4 = 99, @@ -35,10 +35,9 @@ y6 = 300; var line3 = new Path.Line([x5, y5], [x6, y6]); line3.strokeColor = "yellow"; - line3.strokeWidth = "5px"; + line3.strokeWidth = "5"; var esvg = new ExportSVG(); - //esvg.exportProject(paper.project); var output = esvg.exportProject(paper.project); console.log(output); var test = document.getElementById('svg')