]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index/new_note.js
Merge pull request #5558 from tomhughes/var-let-const
[rails.git] / app / assets / javascripts / index / new_note.js
index a1511a3bc14b6184bb5777bb718e2ae9e22f478c..73fcda97c5e9421c99daf2ae4d7b92b794f0b3f9 100644 (file)
@@ -1,12 +1,12 @@
 OSM.NewNote = function (map) {
 OSM.NewNote = function (map) {
-  var noteLayer = map.noteLayer,
-      content = $("#sidebar_content"),
-      page = {},
-      addNoteButton = $(".control-note .control-button"),
-      newNoteMarker,
+  const noteLayer = map.noteLayer,
+        content = $("#sidebar_content"),
+        page = {},
+        addNoteButton = $(".control-note .control-button");
+  let newNoteMarker,
       halo;
 
       halo;
 
-  var noteIcons = {
+  const noteIcons = {
     "new": L.icon({
       iconUrl: OSM.NEW_NOTE_MARKER,
       iconSize: [25, 40],
     "new": L.icon({
       iconUrl: OSM.NEW_NOTE_MARKER,
       iconSize: [25, 40],
@@ -48,7 +48,7 @@ OSM.NewNote = function (map) {
   }
 
   function addCreatedNoteMarker(feature) {
   }
 
   function addCreatedNoteMarker(feature) {
-    var marker = L.marker(feature.geometry.coordinates.reverse(), {
+    const marker = L.marker(feature.geometry.coordinates.reverse(), {
       icon: noteIcons[feature.properties.status],
       opacity: 0.9,
       interactive: true
       icon: noteIcons[feature.properties.status],
       opacity: 0.9,
       interactive: true
@@ -132,7 +132,7 @@ OSM.NewNote = function (map) {
     map.addLayer(noteLayer);
 
     const params = new URLSearchParams(path.substring(path.indexOf("?")));
     map.addLayer(noteLayer);
 
     const params = new URLSearchParams(path.substring(path.indexOf("?")));
-    var markerLatlng;
+    let markerLatlng;
 
     if (params.has("lat") && params.has("lon")) {
       markerLatlng = L.latLng(params.get("lat"), params.get("lon"));
 
     if (params.has("lat") && params.has("lon")) {
       markerLatlng = L.latLng(params.get("lat"), params.get("lon"));
@@ -161,7 +161,7 @@ OSM.NewNote = function (map) {
 
       createNote(location, text, (feature) => {
         if (typeof OSM.user === "undefined") {
 
       createNote(location, text, (feature) => {
         if (typeof OSM.user === "undefined") {
-          var anonymousNotesCount = Number(Cookies.get("_osm_anonymous_notes_count")) || 0;
+          const anonymousNotesCount = Number(Cookies.get("_osm_anonymous_notes_count")) || 0;
           Cookies.set("_osm_anonymous_notes_count", anonymousNotesCount + 1, { secure: true, expires: 30, path: "/", samesite: "lax" });
         }
         content.find("textarea").val("");
           Cookies.set("_osm_anonymous_notes_count", anonymousNotesCount + 1, { secure: true, expires: 30, path: "/", samesite: "lax" });
         }
         content.find("textarea").val("");