Skip to content

Commit

Permalink
add missing repos!
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <vsoch@users.noreply.github.com>
  • Loading branch information
vsoch committed Jan 29, 2022
1 parent 9db9622 commit 9b71161
Show file tree
Hide file tree
Showing 3 changed files with 3,638 additions and 89 deletions.
8 changes: 3 additions & 5 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -231,10 +231,8 @@ <h2>Research Software Encyclopedia Software Clustering</h2>
var colorDomain = d3.set(theData, function(d) {return d.language});
colorDomain.remove("null")
colorDomain.remove("undefined")
colorDomain.remove("unknown")

// remove variations of null, undefined unknown
console.log(colorDomain)
colorDomain = colorDomain.values()
colorDomain.sort()

Expand Down Expand Up @@ -393,7 +391,7 @@ <h2>Research Software Encyclopedia Software Clustering</h2>
.attr("class", function(d) {
language = parse_language(d.language)
return language + " software-node"})
.style("fill", function(d) {return colorize(d.language)})
.style("fill", function(d) {return colorize(parse_language(d.language))})
.style("opacity", 1)
.on("mouseover", function(d, i) {
d3.select(this)
Expand All @@ -414,7 +412,7 @@ <h2>Research Software Encyclopedia Software Clustering</h2>
})
html = ":" + html
}
html = d.name + " " + html
html = d.name + "language: " + d.language + " " + html
$("#topic-info").html(html);
crosshair.style('display', null); // enable crosshair visibility
setCrosshair(xScale(d.cx), yScale(d.cy));
Expand All @@ -425,7 +423,7 @@ <h2>Research Software Encyclopedia Software Clustering</h2>
"stroke": "none"
})
.style("fill", function(d) {
return colorize(d.language);
return colorize(parse_language(d.language));
});
})
// if enabled will not snap to element
Expand Down

0 comments on commit 9b71161

Please sign in to comment.