Skip to content

Commit

Permalink
Single cell browser component (#814)
Browse files Browse the repository at this point in the history
* starting component

* further buildout of components

* fixing v-key errors

* Single Cell Browser component(s)

* adding hover labels to umap buttons and 'colo by' labels

* add umap tooltip for zoom/pan

* data cleanup fix

* starting select component for single cell browser color picker

* cfde citation formatting

* adding support for query string params

* adding layouts + more
  • Loading branch information
a-shilin authored Dec 13, 2024
1 parent dce3b0a commit 8de160f
Show file tree
Hide file tree
Showing 6 changed files with 1,387 additions and 760 deletions.
8 changes: 4 additions & 4 deletions src/components/researchPortal/ResearchBarPlotV2.vue
Original file line number Diff line number Diff line change
Expand Up @@ -620,8 +620,8 @@
// Tooltip mouseout to hide it
rect.addEventListener('mouseout', function(e){
tooltip.classList.remove('show');
tooltip.style.top = -100 + "px";
tooltip.style.left = -100 + "px";
tooltip.style.top = -1000 + "px";
tooltip.style.left = -1000 + "px";
});
Expand Down Expand Up @@ -665,8 +665,8 @@
// Tooltip mouseout to hide it
rect.addEventListener('mouseout', function(e){
tooltip.classList.remove('show');
tooltip.style.top = -100 + "px";
tooltip.style.left = -100 + "px";
tooltip.style.top = -1000 + "px";
tooltip.style.left = -1000 + "px";
});
// append text
Expand Down
Loading

0 comments on commit 8de160f

Please sign in to comment.