diff --git a/examples/SVG Export/Circle Testing.html b/examples/SVG Export/Circle Testing.html index 70cfce5b..66854f03 100644 --- a/examples/SVG Export/Circle Testing.html +++ b/examples/SVG Export/Circle Testing.html @@ -23,11 +23,10 @@ var path = new Path.Circle(new Point(50, 50), 25); path.fillColor = 'red'; - document.getElementById('svg').appendChild(project.exportSVG()); + document.body.appendChild(project.exportSVG());
-