From: Tom Hughes Date: Mon, 28 Sep 2015 14:01:41 +0000 (+0100) Subject: Fix jshint warning X-Git-Tag: live~4026 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/24eaeb2653b231f52822c37433a258e08eae9eea Fix jshint warning --- 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",