]> git.openstreetmap.org Git - rails.git/commitdiff
Remove unused return value of addCreatedNoteMarker()
authorAnton Khorev <tony29@yandex.ru>
Wed, 25 Dec 2024 00:43:54 +0000 (03:43 +0300)
committerAnton Khorev <tony29@yandex.ru>
Tue, 31 Dec 2024 20:46:29 +0000 (23:46 +0300)
This function adds a marker to notes layer. This controller doesn't need to do anything with markers of existing notes.

app/assets/javascripts/index/new_note.js

index bd093e11adcb6fca2a45bd7fb72c6843dea0164e..7eb1323834aaf80e86b0676e1aa311d93da55df5 100644 (file)
@@ -57,7 +57,6 @@ OSM.NewNote = function (map) {
     });
     marker.id = feature.properties.id;
     marker.addTo(noteLayer);
-    return marker;
   }
 
   page.pushstate = page.popstate = function (path) {