X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ee9ac1930d87466a173fdc992db078cae38d2d44..20139c08e558c32daf6ce6fbaa73503c1c53207d:/app/assets/javascripts/index/notes.js diff --git a/app/assets/javascripts/index/notes.js b/app/assets/javascripts/index/notes.js index d5ffbead1..61067adba 100644 --- a/app/assets/javascripts/index/notes.js +++ b/app/assets/javascripts/index/notes.js @@ -45,6 +45,8 @@ OSM.initializeNotes = function (map) { } else { marker = L.marker(feature.geometry.coordinates.reverse(), { icon: noteIcons[feature.properties.status], + title: feature.properties.comments && feature.properties.comments[0] ? + feature.properties.comments[0].text : undefined, opacity: 0.8, clickable: true });