remove console.log, change icon

This commit is contained in:
Thomas Hervey
2018-06-22 21:34:16 -04:00
parent dab46d2778
commit 1878397387
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -86,7 +86,7 @@ export function svgNotes(projection, context, dispatch) {
.attr('height', '24px')
.attr('x', '-12px')
.attr('y', '-12px')
.attr('xlink:href', '#far-comment-alt');
.attr('xlink:href', '#fas-comment-alt');
}
function drawNotes(selection) {
-1
View File
@@ -120,7 +120,6 @@ export function svgOpenstreetcamImages(projection, context, dispatch) {
var service = getService();
var sequences = (service ? service.sequences(projection) : []);
var images = (service && showMarkers ? service.images(projection) : []);
// console.log('images: ', images);
var traces = layer.selectAll('.sequences').selectAll('.sequence')
.data(sequences, function(d) { return d.properties.key; });