]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index/directions.js
Merge remote-tracking branch 'upstream/pull/4897'
[rails.git] / app / assets / javascripts / index / directions.js
index f07aa7f072fdb9e0b2f03bf17f6feba763884000..9c5ff2a8d2af724697f2b166e3de7be1b139c352 100644 (file)
@@ -69,7 +69,7 @@ OSM.Directions = function (map) {
     });
 
     input.on("keydown", function () {
     });
 
     input.on("keydown", function () {
-      input.removeClass("error");
+      input.removeClass("is-invalid");
     });
 
     input.on("change", function (e) {
     });
 
     input.on("change", function (e) {
@@ -81,7 +81,7 @@ OSM.Directions = function (map) {
     endpoint.setValue = function (value, latlng) {
       endpoint.value = value;
       delete endpoint.latlng;
     endpoint.setValue = function (value, latlng) {
       endpoint.value = value;
       delete endpoint.latlng;
-      input.removeClass("error");
+      input.removeClass("is-invalid");
       input.val(value);
 
       if (latlng) {
       input.val(value);
 
       if (latlng) {
@@ -106,7 +106,7 @@ OSM.Directions = function (map) {
         endpoint.awaitingGeocode = false;
         endpoint.hasGeocode = true;
         if (json.length === 0) {
         endpoint.awaitingGeocode = false;
         endpoint.hasGeocode = true;
         if (json.length === 0) {
-          input.addClass("error");
+          input.addClass("is-invalid");
           alert(I18n.t("javascripts.directions.errors.no_place", { place: endpoint.value }));
           return;
         }
           alert(I18n.t("javascripts.directions.errors.no_place", { place: endpoint.value }));
           return;
         }