]> git.openstreetmap.org Git - rails.git/commitdiff
Remove 'center' argument of addChangeset()
authorAnton Khorev <tony29@yandex.ru>
Sun, 5 Jan 2025 14:28:36 +0000 (17:28 +0300)
committerAnton Khorev <tony29@yandex.ru>
Sun, 5 Jan 2025 14:28:36 +0000 (17:28 +0300)
It is always set to true.

app/assets/javascripts/index/changeset.js

index 75a1f7b4dfa770463867cf7fafafbaf05babb1e3..257dad5bcc8813584b5646f0dd5121a07ed0b30f 100644 (file)
@@ -12,13 +12,12 @@ OSM.Changeset = function (map) {
   page.load = function (path, id) {
     if (id) currentChangesetId = id;
     initialize();
-    addChangeset(currentChangesetId, true);
+    addChangeset(currentChangesetId);
   };
 
-  function addChangeset(id, center) {
+  function addChangeset(id) {
     map.addObject({ type: "changeset", id: parseInt(id, 10) }, function (bounds) {
-      if (!window.location.hash && bounds.isValid() &&
-          (center || !map.getBounds().contains(bounds))) {
+      if (!window.location.hash && bounds.isValid()) {
         OSM.router.withoutMoveListener(function () {
           map.fitBounds(bounds);
         });