-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Vanilla Picker build out * Add additional dismissal mouse handlers * More Color: picker tweaks * Reduce ColorPicker palette. * More color picker tweaks. Comment out unused colorpickers in Popover amd MenuPopup * GenericColorPicker: Add Recent Colors section * Recent Colors build out * Unset color refers to track.color * Previous colors build out * More Colors - now updates track color in realtime * Clean up default track color implementation * Layout changes * Bug fixes * Tweak picker presentation positioning * Tweak picker presentation positioning * Use GenericColorPicker.recentColors * Initial color bug * track initial color wrangling * Set initial color for all track types
- Loading branch information
Showing
28 changed files
with
1,176 additions
and
991 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
align-items: center; | ||
|
||
// header bar | ||
div:first-child { | ||
>div:nth-child(1) { | ||
|
||
cursor: move; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<link href=https://igv.org/web/img/favicon.ico rel="shortcut icon"> | ||
<title>IGV - Dev</title> | ||
</head> | ||
|
||
<body> | ||
|
||
<div id="myDiv" style="padding-top: 50px;padding-bottom: 20px; height: auto"> | ||
|
||
</div> | ||
|
||
<script type="module"> | ||
|
||
import igv from "../../js/index.js"; | ||
|
||
const div = document.getElementById("myDiv"); | ||
const options = { | ||
locus: '19:49301000-49305700', | ||
genome: "hg19", | ||
tracks: [ | ||
{ | ||
name: 'All pos bars', | ||
url: '../../test/data/wig/allPositive.bedgraph', | ||
// color: '#0f0', | ||
indexed: false | ||
}, | ||
] | ||
}; | ||
|
||
igv.createBrowser(div, options).then(function (browser) { | ||
}); | ||
|
||
|
||
</script> | ||
|
||
</body> | ||
|
||
</html> | ||
|
Oops, something went wrong.