]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index/notes.js
Rename 'clickable' to 'interactive' per leaflet 1.x change
[rails.git] / app / assets / javascripts / index / notes.js
index 307b11e0df1def3a0cc9ee2640e8c2a3389a822e..9feee888c1daca1820ad5cb3baee03b6f30c27e8 100644 (file)
@@ -1,4 +1,4 @@
-function initializeNotes(map) {
+OSM.initializeNotes = function (map) {
   var noteLayer = map.noteLayer,
       notes = {};
 
@@ -45,8 +45,9 @@ function initializeNotes(map) {
     } else {
       marker = L.marker(feature.geometry.coordinates.reverse(), {
         icon: noteIcons[feature.properties.status],
+        title: feature.properties.comments[0].text,
         opacity: 0.8,
-        clickable: true
+        interactive: true
       });
       marker.id = feature.properties.id;
       marker.addTo(noteLayer);
@@ -93,4 +94,4 @@ function initializeNotes(map) {
       noteLoader = null;
     }
   }
-}
+};