Skip to content

Commit

Permalink
Merge pull request #124 from CBIIT/integration
Browse files Browse the repository at this point in the history
Integration
  • Loading branch information
kvnjng authored Mar 9, 2020
2 parents 021a7d7 + 2d7ba51 commit 55919eb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion LDlink/LDlink.js
Original file line number Diff line number Diff line change
Expand Up @@ -4552,7 +4552,9 @@ window.addEventListener('resize', function() {
});

window.addEventListener('popstate', function(e) {
this.location.reload();
if (e.state) {
this.location.reload();
}
});

function clearTabs(currentTab){
Expand Down
6 changes: 3 additions & 3 deletions LDlink/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -468,9 +468,9 @@ <h2 class="text-center">LDassoc Tool</h2>
<button class="btn btn-default dropdown-toggle" type="button" id="region-codes-menu1" data-toggle="dropdown"
style="width:155px;">Select Region<span class="caret"></span></button>
<ul class="dropdown-menu pull-left" role="menu" aria-labelledby="menu1">
<li role="presentation"><a role="menuitem" tabindex="-1">Gene</a></li>
<li role="presentation"><a role="menuitem" tabindex="-1">Region</a></li>
<li role="presentation"><a role="menuitem" tabindex="-1">Variant</a></li>
<li role="presentation"><a role="menuitem" tabindex="-1" href="#">Gene</a></li>
<li role="presentation"><a role="menuitem" tabindex="-1" href="#">Region</a></li>
<li role="presentation"><a role="menuitem" tabindex="-1" href="#">Variant</a></li>
</ul>
</div>
<!-- region = Gene -->
Expand Down

0 comments on commit 55919eb

Please sign in to comment.