]> git.openstreetmap.org Git - rails.git/commitdiff
Remove active class from addNoteButton only in page.unload()
authorAnton Khorev <tony29@yandex.ru>
Wed, 25 Dec 2024 02:08:44 +0000 (05:08 +0300)
committerAnton Khorev <tony29@yandex.ru>
Tue, 31 Dec 2024 23:13:59 +0000 (02:13 +0300)
Same reasons as in the previous commit.

app/assets/javascripts/index/new_note.js

index eab4b258a3808c00bf04a0b757627e19aa98835e..6cb8db215efdf8879b93f8a8505731fbd0927131 100644 (file)
@@ -96,9 +96,7 @@ OSM.NewNote = function (map) {
     newNoteMarker.addTo(map);
     addHalo(newNoteMarker.getLatLng());
 
-    newNoteMarker.on("remove", function () {
-      addNoteButton.removeClass("active");
-    }).on("dragend", function () {
+    newNoteMarker.on("dragend", function () {
       content.find("textarea").focus();
     });
   }
@@ -158,7 +156,6 @@ OSM.NewNote = function (map) {
       createNote(location, text, (feature) => {
         content.find("textarea").val("");
         addCreatedNoteMarker(feature);
-        addNoteButton.removeClass("active");
         OSM.router.route("/note/" + feature.properties.id);
       });
     });