From 0cc2d629853a5d51bab5ccc45159d4b6dae4e5a8 Mon Sep 17 00:00:00 2001 From: Ansis Brammanis Date: Tue, 5 Feb 2013 12:14:37 -0500 Subject: [PATCH] Update onway arrow font size --- js/id/svg/lines.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/id/svg/lines.js b/js/id/svg/lines.js index 624237d93..1bfac34b1 100644 --- a/js/id/svg/lines.js +++ b/js/id/svg/lines.js @@ -56,7 +56,9 @@ iD.svg.Lines = function(projection) { } if (!alength) { - var arrow = surface.append('text').text(arrowtext); + var arrow = surface.append('text') + .text(arrowtext) + .style('font-size', 7); alength = arrow.node().getComputedTextLength(); arrow.remove(); }