]> git.openstreetmap.org Git - rails.git/commitdiff
Move new note page.pushstate/popstate next to page.load
authorAnton Khorev <tony29@yandex.ru>
Wed, 25 Dec 2024 01:19:19 +0000 (04:19 +0300)
committerAnton Khorev <tony29@yandex.ru>
Tue, 31 Dec 2024 20:47:55 +0000 (23:47 +0300)
app/assets/javascripts/index/new_note.js

index c1df93517cd59a490138622d5e5034401a2c463d..0ce77f8ca8f8cacf70fddec0b5a3f05c4f012639 100644 (file)
@@ -59,12 +59,6 @@ OSM.NewNote = function (map) {
     marker.addTo(noteLayer);
   }
 
-  page.pushstate = page.popstate = function (path) {
-    OSM.loadSidebarContent(path, function () {
-      page.load(path);
-    });
-  };
-
   function newHalo(loc, a) {
     var hasHalo = halo && map.hasLayer(halo);
 
@@ -84,6 +78,12 @@ OSM.NewNote = function (map) {
     }
   }
 
+  page.pushstate = page.popstate = function (path) {
+    OSM.loadSidebarContent(path, function () {
+      page.load(path);
+    });
+  };
+
   page.load = function (path) {
     if (addNoteButton.hasClass("disabled")) return;
     if (addNoteButton.hasClass("active")) return;