Skip to content

Commit

Permalink
Removed console.log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Saad-Falcon committed Jun 7, 2020
1 parent 77ac15f commit 4783925
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions src/components/PeopleMapView.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,6 @@ function renderGraph() {
}
countEmphasis = countEmphasis - 1
console.log(width)
console.log(height)
// append the svg object to the body of the page
Expand Down Expand Up @@ -277,7 +274,6 @@ function renderGraph() {
// for (var i = 0; i < dataFilter.length; i++) {
// window.totalAuthors[dataFilter[i].Author] = true;
// }
// console.log(window.totalAuthors)
// Currently click author
Expand Down Expand Up @@ -967,7 +963,6 @@ function renderGraph() {
if (currentlyClicked == "" & dataPoint != "") {
console.log("Did this one")
currentlyClicked = dataPoint
Expand All @@ -980,7 +975,7 @@ function renderGraph() {
var keywordTokens = d.KeyWords.split(", ")
console.log(keywordTokens)
var finalTokens = ["","","","",""]
Expand Down Expand Up @@ -1031,7 +1026,7 @@ function renderGraph() {
} else if (currentlyClicked != "" & dataPoint == currentlyClicked) {
console.log("We did this one")
dot.data(dataFilter)
.transition()
Expand Down Expand Up @@ -1144,7 +1139,7 @@ function renderGraph() {
// When a new research query is inputted, update the graph with the new ranking
selectedResearchInterest.subscribe((value) => {
console.log(value)
if (value == "") {
Expand All @@ -1162,7 +1157,7 @@ function renderGraph() {
updateClusters($visNumClusters, $visKeywordEmphasis)
console.log("Still got here")
handleClick(currentlyClicked)
Expand All @@ -1174,7 +1169,6 @@ function renderGraph() {
if (totalAuthors[value]) {
console.log("AUTHOR SELECT")
handleClick(value)
return
}
Expand Down

0 comments on commit 4783925

Please sign in to comment.