From 1b42822c2da05000b94a221726c2d99a4dcf7531 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Mon, 17 Jun 2013 16:35:28 -0700 Subject: [PATCH] Remove trailing comma. --- src/core/PaperScope.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/PaperScope.js b/src/core/PaperScope.js index c1527cb8..729e064f 100644 --- a/src/core/PaperScope.js +++ b/src/core/PaperScope.js @@ -64,7 +64,7 @@ var PaperScope = Base.extend(/** @lends PaperScope# */{ // describe the support of various features. var ctx = CanvasProvider.getContext(1, 1); PaperScope.prototype.support = { - dash: 'setLineDash' in ctx || 'mozDash' in ctx, + dash: 'setLineDash' in ctx || 'mozDash' in ctx }; CanvasProvider.release(ctx); }