X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/becccea034bc1ca4609c904095f4f86e17e349b4..efd50cd529990069dc1ca95f66ec6f61471fe29d:/app/assets/javascripts/index/directions.js diff --git a/app/assets/javascripts/index/directions.js b/app/assets/javascripts/index/directions.js index 14be8b358..8a80328cc 100644 --- a/app/assets/javascripts/index/directions.js +++ b/app/assets/javascripts/index/directions.js @@ -40,7 +40,8 @@ OSM.Directions = function (map) { shadowUrl: OSM.MARKER_SHADOW, shadowSize: [41, 41] }), - draggable: true + draggable: true, + autoPan: true }); endpoint.marker.on('drag dragend', function (e) { @@ -54,7 +55,7 @@ OSM.Directions = function (map) { }); input.on("keydown", function() { - input.css("background-color", "#fff"); + input.removeClass("error"); }); input.on("change", function (e) { @@ -68,6 +69,7 @@ OSM.Directions = function (map) { endpoint.setValue = function(value, latlng) { endpoint.value = value; delete endpoint.latlng; + input.removeClass("error"); input.val(value); if (latlng) { @@ -90,8 +92,8 @@ OSM.Directions = function (map) { endpoint.awaitingGeocode = false; endpoint.hasGeocode = true; if (json.length === 0) { + input.addClass("error"); alert(I18n.t('javascripts.directions.errors.no_place', {place: endpoint.value})); - input.css("background-color", "rgba(255, 0, 0, 0.5)"); return; }