Remove trailing comma.

This commit is contained in:
Jürg Lehni 2013-06-17 16:35:28 -07:00
parent f350f34eb4
commit 1b42822c2d

View file

@ -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);
}