]> git.openstreetmap.org Git - rails.git/commitdiff
Make URLs more relative
authorMarwin Hochfelsner <50826859+hlfan@users.noreply.github.com>
Wed, 19 Mar 2025 04:44:04 +0000 (05:44 +0100)
committerMarwin Hochfelsner <50826859+hlfan@users.noreply.github.com>
Wed, 19 Mar 2025 04:44:04 +0000 (05:44 +0100)
app/assets/javascripts/embed.js.erb
app/assets/javascripts/id.js

index c436e342b20f39051d4ba665f0e077e2b4a184a0..62c93b282a7788b2fbbb177c1487b051080d9c1c 100644 (file)
@@ -56,7 +56,7 @@ window.onload = function () {
 L.Control.OSMReportAProblem = L.Control.Attribution.extend({
   options: {
     position: "bottomright",
-    prefix: `<a href="https://www.openstreetmap.org/fixthemap?lat={x}&lon={y}&zoom={z}" target="_blank">${OSM.i18n.t("javascripts.embed.report_problem")}</a>`
+    prefix: `<a href="/fixthemap?lat={x}&lon={y}&zoom={z}" target="_blank">${OSM.i18n.t("javascripts.embed.report_problem")}</a>`
   },
 
   onAdd: function (map) {
index f2063ff0ef17c50347d97a7c4d44674f5e0b471a..d60d4b82d0d0b709335d77aed1d32e7cca19ea10 100644 (file)
@@ -16,7 +16,7 @@ document.addEventListener("DOMContentLoaded", function () {
     const url = location.protocol + "//" + location.host;
     idContext.preauth({
       url: url,
-      apiUrl: url === "https://www.openstreetmap.org" ? "https://api.openstreetmap.org" : url,
+      apiUrl: url.replace("www.openstreetmap.org", "api.openstreetmap.org"),
       access_token: container.dataset.token
     });