From 1840240003b115c7f662428284b23c3535e8ec4c Mon Sep 17 00:00:00 2001 From: Jeff Schiller Date: Tue, 4 Aug 2009 03:14:23 +0000 Subject: [PATCH] Remove trailing commas git-svn-id: http://svg-edit.googlecode.com/svn/trunk@351 eee81c28-f429-11dd-99c0-75d572ba1ddd --- editor/svgcanvas.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/editor/svgcanvas.js b/editor/svgcanvas.js index 1c575c17..8718a81d 100644 --- a/editor/svgcanvas.js +++ b/editor/svgcanvas.js @@ -194,7 +194,7 @@ function SvgCanvas(c) "width": 1, "height": 1, // need to specify this so that the rect is not selectable - "style": "pointer-events:none", + "style": "pointer-events:none" } }) ); @@ -206,7 +206,7 @@ function SvgCanvas(c) "e":null, "sw":null, "s":null, - "se":null, + "se":null }; // add the corner grips @@ -385,7 +385,7 @@ function SvgCanvas(c) "stroke": "blue", "stroke-width": 0.5, "display": "none", - "style": "pointer-events:none", + "style": "pointer-events:none" } })); } @@ -1044,7 +1044,7 @@ function SvgCanvas(c) // fix for bug where text elements were always 50% opacity "opacity": current_opacity, "font-size": current_font_size, - "font-family": current_font_family, + "font-family": current_font_family } }); newText.textContent = "text"; @@ -2007,5 +2007,5 @@ var Utils = { } catch(e){ throw new Error("Error parsing XML string"); }; return out; - }, + } };