Skip to content

Commit

Permalink
Remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleGospo committed Mar 25, 2024
1 parent 59a0a24 commit 3d26965
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -979,9 +979,9 @@ <h3 class="fw-title">Social Media</h3>

$.getJSON(url, data).done(function(response) {
latestDay = Object.keys(response)[Object.keys(response).length -1];
console.log(latestDay);
//console.log(latestDay);
for (i in response[latestDay]) {
console.log(i);
//console.log(i);
$('#image-selector').append('<option value="'+i+'">'+i+'</option>');
}

Expand All @@ -991,7 +991,7 @@ <h3 class="fw-title">Social Media</h3>
$( "select option:selected" ).each( function() {
str = $( this ).val();
} );
console.log("loading data for "+str);
//console.log("loading data for "+str);
loadData(chart, response, str);
} );

Expand Down

0 comments on commit 3d26965

Please sign in to comment.