]> git.openstreetmap.org Git - rails.git/commitdiff
Don't pass url to createNote()
authorAnton Khorev <tony29@yandex.ru>
Tue, 31 Dec 2024 20:25:11 +0000 (23:25 +0300)
committerAnton Khorev <tony29@yandex.ru>
Tue, 31 Dec 2024 20:25:11 +0000 (23:25 +0300)
app/assets/javascripts/index/new_note.js

index e5d36558911ddec8f0e21d36f50ae139612a6525..6504bae9e08fcf3de3377bae85b7c8cae9742c11 100644 (file)
@@ -35,14 +35,14 @@ OSM.NewNote = function (map) {
     OSM.router.route("/note/new");
   });
 
-  function createNote(marker, text, url) {
+  function createNote(marker, text) {
     var location = marker.getLatLng().wrap();
 
     marker.options.draggable = false;
     marker.dragging.disable();
 
     $.ajax({
-      url: url,
+      url: "/api/0.6/notes.json",
       type: "POST",
       oauth: true,
       data: {
@@ -154,7 +154,7 @@ OSM.NewNote = function (map) {
 
       e.preventDefault();
       $(this).prop("disabled", true);
-      createNote(newNoteMarker, text, "/api/0.6/notes.json");
+      createNote(newNoteMarker, text);
     });
 
     return map.getState();