From: Anton Khorev Date: Wed, 25 Dec 2024 02:04:43 +0000 (+0300) Subject: Call removeNewNoteMarker() only from page.unload() X-Git-Tag: live~390^2~4 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/5542858315f89d73cd13b1292acbbddb7de678cc?ds=inline Call removeNewNoteMarker() only from page.unload() It was also called from noteCreated() but that triggered page.unload() via OSM.router.route(). --- diff --git a/app/assets/javascripts/index/new_note.js b/app/assets/javascripts/index/new_note.js index 4cab9b797..eab4b258a 100644 --- a/app/assets/javascripts/index/new_note.js +++ b/app/assets/javascripts/index/new_note.js @@ -158,7 +158,6 @@ OSM.NewNote = function (map) { createNote(location, text, (feature) => { content.find("textarea").val(""); addCreatedNoteMarker(feature); - removeNewNoteMarker(); addNoteButton.removeClass("active"); OSM.router.route("/note/" + feature.properties.id); });