X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/79447e75497601444a9d4de25220f24a609d2780..d797de431716252ac03ad390b3233c91fa3c50b2:/app/assets/javascripts/index/directions.js
diff --git a/app/assets/javascripts/index/directions.js b/app/assets/javascripts/index/directions.js
index 6efde27c6..5040e7f3e 100644
--- a/app/assets/javascripts/index/directions.js
+++ b/app/assets/javascripts/index/directions.js
@@ -256,7 +256,7 @@ OSM.Directions = function (map) {
var html = "
" +
"" + I18n.t("javascripts.directions.directions") +
- "
" +
+ "
" +
I18n.t("javascripts.directions.distance") + ": " + formatDistance(route.distance) + ". " +
I18n.t("javascripts.directions.time") + ": " + formatTime(route.time) + ".";
if (typeof route.ascend !== "undefined" && typeof route.descend !== "undefined") {
@@ -264,7 +264,7 @@ OSM.Directions = function (map) {
I18n.t("javascripts.directions.ascend") + ": " + Math.round(route.ascend) + "m. " +
I18n.t("javascripts.directions.descend") + ": " + Math.round(route.descend) + "m.";
}
- html += "
";
+ html += "";
$("#sidebar_content")
.html(html);
@@ -312,7 +312,7 @@ OSM.Directions = function (map) {
$("#turnbyturn").append(row);
});
- $("#sidebar_content").append("" +
+ $("#sidebar_content").append("
" +
I18n.t("javascripts.directions.instructions.courtesy", { link: chosenEngine.creditline }) +
"
");
@@ -327,17 +327,15 @@ OSM.Directions = function (map) {
}
var chosenEngineIndex = findEngine("fossgis_osrm_car");
- if ($.cookie("_osm_directions_engine")) {
- chosenEngineIndex = findEngine($.cookie("_osm_directions_engine"));
+ if (Cookies.get("_osm_directions_engine")) {
+ chosenEngineIndex = findEngine(Cookies.get("_osm_directions_engine"));
}
setEngine(chosenEngineIndex);
select.on("change", function (e) {
chosenEngine = engines[e.target.selectedIndex];
- $.cookie("_osm_directions_engine", chosenEngine.id, { expires: expiry, path: "/" });
- if (map.hasLayer(polyline)) {
- getRoute(true, true);
- }
+ Cookies.set("_osm_directions_engine", chosenEngine.id, { secure: true, expires: expiry, path: "/", samesite: "lax" });
+ getRoute(true, true);
});
$(".directions_form").on("submit", function (e) {