From a540759a8ef48466cd6ab3d715e17030d9c8364b Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Sat, 4 May 2013 11:26:50 -0700 Subject: [PATCH] Manually apply d3 clipExtent fix (fixes #1406) --- js/lib/d3.v3.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/lib/d3.v3.js b/js/lib/d3.v3.js index a4374302c..317ac2af7 100644 --- a/js/lib/d3.v3.js +++ b/js/lib/d3.v3.js @@ -2613,7 +2613,7 @@ function d3_geo_clipView(x0, y0, x1, y1) { } listener.point(b[0], b[1]); if (!v) listener.lineEnd(); - } else { + } else if (v) { listener.lineStart(); listener.point(x, y); }