Skip to content

Commit

Permalink
1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dauglyon committed Mar 29, 2018
1 parent 4437560 commit 16b731b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions example/StudyComparison.js
Original file line number Diff line number Diff line change
Expand Up @@ -385,16 +385,18 @@ function main(){

var tooltip = newSvg.append("a")
.classed("grapgr-tooltip",true)
.attr('opacity',0)
.attr('transform', 'translate(' + 0 + ',' + -100 + ')')
.attr("target","_blank");
tooltip.append('rect')
.attr('x',-2).attr('y',-2)
.attr('x',-2).attr('y',-15)
.attr('width',100)
.attr('height',16)
.attr('fill','black');
tooltip.append('text')
.attr('fill','white')
.attr('text-decoration','underline')
.attr('y',10)
.attr('y',-3)
.attr('x',1)
.attr('font-size','12');
tooltip = tooltip.merge(d3.select('.grapgr-tooltip'));
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@solgenomics/brapi-study-comparison",
"version": "1.1.1",
"version": "1.1.2",
"description": "",
"main": "build/StudyComparison.js",
"scripts": {
Expand Down

0 comments on commit 16b731b

Please sign in to comment.