OSM.Note = function (map) {
- var noteLayer = map.noteLayer,
- content = $('#sidebar_content'),
+ var content = $('#sidebar_content'),
page = {},
halo, currentNote;
content.find("textarea").on("input", function (e) {
var form = e.target.form;
- if ($(e.target).val() == "") {
+ if ($(e.target).val() === "") {
$(form.close).val(I18n.t("javascripts.notes.show.resolve"));
$(form.comment).prop("disabled", true);
} else {
currentNote = L.marker(latLng, {
icon: noteIcons[data.status],
opacity: 1,
- clickable: true
+ interactive: true
});
map.addLayer(currentNote);
if (callback) callback();
- };
+ }
function moveToNote() {
var data = $('.details').data(),