X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/20139c08e558c32daf6ce6fbaa73503c1c53207d..91c30d3a8c0b746cafa91e09740981ed682e4fa7:/app/assets/javascripts/index/notes.js diff --git a/app/assets/javascripts/index/notes.js b/app/assets/javascripts/index/notes.js index 61067adba..9feee888c 100644 --- a/app/assets/javascripts/index/notes.js +++ b/app/assets/javascripts/index/notes.js @@ -45,10 +45,9 @@ 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, + title: feature.properties.comments[0].text, opacity: 0.8, - clickable: true + interactive: true }); marker.id = feature.properties.id; marker.addTo(noteLayer);