]> git.openstreetmap.org Git - rails.git/commitdiff
Add reload on iframe redirect
authorMarwin Hochfelsner <50826859+hlfan@users.noreply.github.com>
Wed, 19 Mar 2025 18:34:57 +0000 (19:34 +0100)
committerMarwin Hochfelsner <50826859+hlfan@users.noreply.github.com>
Wed, 19 Mar 2025 18:34:57 +0000 (19:34 +0100)
app/assets/javascripts/edit/id.js.erb

index 7f111b41ec4bfcad8bf24a3385874b3b265fac16..cabd15b56e776227b030f76a600b8643beb38855 100644 (file)
@@ -36,4 +36,10 @@ $(function () {
   if (idData.gpx) params.set("gpx", idData.gpx);
 
   id.attr("src", idData.url + "#" + params);
+
+  id.on("load", function () {
+    if (!this.contentWindow.location.href.startsWith(idData.url)) {
+      location.reload();
+    }
+  });
 });