From db49718015264814d8f731d29bc197969ff18161 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Tue, 18 Jun 2013 14:33:50 -0700 Subject: [PATCH] No need for white-space in CSS color format. --- src/style/Color.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/style/Color.js b/src/style/Color.js index 5175e9ee..e9e02054 100644 --- a/src/style/Color.js +++ b/src/style/Color.js @@ -739,7 +739,7 @@ var Color = Base.extend(new function() { if (alpha < 1) components.push(alpha); return (components.length == 4 ? 'rgba(' : 'rgb(') - + components.join(', ') + ')'; + + components.join(',') + ')'; }, toCanvasStyle: function(ctx) {