X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/5f495b43d18bfa7a9bcaf918aa4db15261bea46a..5bd59e19368d8761a7dbaa5db0e8833174c11f36:/app/assets/javascripts/index/notes.js diff --git a/app/assets/javascripts/index/notes.js b/app/assets/javascripts/index/notes.js index fd5cd3ae9..4890a2687 100644 --- a/app/assets/javascripts/index/notes.js +++ b/app/assets/javascripts/index/notes.js @@ -33,9 +33,9 @@ OSM.initializeNotes = function (map) { } }); - noteLayer.on('click', function(e) { + noteLayer.on("click", function (e) { if (e.layer.id) { - OSM.router.route('/note/' + e.layer.id); + OSM.router.route("/note/" + e.layer.id); } }); @@ -47,7 +47,7 @@ OSM.initializeNotes = function (map) { 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); @@ -55,7 +55,7 @@ OSM.initializeNotes = function (map) { return marker; } - noteLayer.getLayerId = function(marker) { + noteLayer.getLayerId = function (marker) { return marker.id; };