Skip to content

Commit

Permalink
Keeping the joining line width same when highlighted
Browse files Browse the repository at this point in the history
  • Loading branch information
ajitsing committed Mar 28, 2017
1 parent e576c17 commit 07f0c8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pairing_matrix/server/public/matrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ function PlayGround(selector) {
var pairId = pair.join('_');
d3.selectAll($("#" + pairId))
.attr("class", "connectLarge")
.style("stroke-width", function(d) {return playground.connectionScale(d[2]) * 3})
.style("stroke-width", function(d) {return playground.connectionScale(d[2])})
})
d3.selectAll($("#" + id))
.attr("class", "playerLarge")
Expand Down

0 comments on commit 07f0c8d

Please sign in to comment.