From a9d726e4c71a74824c2ce6d8aaab04f0a92e895a Mon Sep 17 00:00:00 2001 From: RMKD Date: Sun, 4 Oct 2015 15:43:38 -0400 Subject: [PATCH] comma to semicolon fixes error on circles example --- src/Native/D3/Color.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Native/D3/Color.js b/src/Native/D3/Color.js index 9b019c7..eb78ea5 100644 --- a/src/Native/D3/Color.js +++ b/src/Native/D3/Color.js @@ -13,7 +13,7 @@ Elm.Native.D3.Color.make = function(elm) { } function elm_convert(typ, color) { - return typeof color[typ] == 'function' ? color[typ]() : d3[typ](color), + return typeof color[typ] == 'function' ? color[typ]() : d3[typ](color); } function elm_fromString(str) {