From 24eaeb2653b231f52822c37433a258e08eae9eea Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Mon, 28 Sep 2015 15:01:41 +0100 Subject: [PATCH 1/1] Fix jshint warning --- app/assets/javascripts/index/directions/graphhopper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/index/directions/graphhopper.js b/app/assets/javascripts/index/directions/graphhopper.js index 2292c6350..5a16f708c 100644 --- a/app/assets/javascripts/index/directions/graphhopper.js +++ b/app/assets/javascripts/index/directions/graphhopper.js @@ -29,7 +29,7 @@ function GraphHopperEngine(id, vehicleType) { type: "jsonp", elevation: false, instructions: true, - point: points.map(function (p) { return p.lat + "," + p.lng }) + point: points.map(function (p) { return p.lat + "," + p.lng; }) }, traditional: true, dataType: "jsonp", -- 2.43.2