Use double quotes consistently in javascript code

This commit is contained in:
Tom Hughes 2019-04-06 15:59:34 +01:00
parent 87127d41e9
commit eb7678145a
29 changed files with 650 additions and 649 deletions

View file

@ -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);
}
});