Skip to content

Commit de36d7e

Browse files
authored
Bug fix: group autoscale set/unset now works properly (#1708)
1 parent 469bcce commit de36d7e

File tree

5 files changed

+41
-9
lines changed

5 files changed

+41
-9
lines changed

css/dom.css.map

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/misc/multi-select.html

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,32 @@
373373
]
374374
};
375375

376-
igv.createBrowser(document.getElementById("myDiv"), overlay_throws_error_config).then(function (browser) {})
376+
const group_autoscale_config = {
377+
genome: "hg19",
378+
locus: "myc",
379+
tracks: [
380+
381+
{
382+
"url": "https://www.encodeproject.org/files/ENCFF754TJH/@@download/ENCFF754TJH.bigWig",
383+
"name": "Encode bigwig",
384+
color: 'rgb(255,0,0)',
385+
height: 256,
386+
"metadata" : {
387+
"Foo": "bar",
388+
"Bar": 999.999
389+
}
390+
},
391+
{
392+
"url": "https://s3-us-west-2.amazonaws.com/ilmn.igv-test/test2.bigWig",
393+
color: 'rgb(0,0,255)',
394+
"name": "Big BigWig",
395+
height: 256
396+
},
397+
398+
]
399+
};
400+
401+
igv.createBrowser(document.getElementById("myDiv"), group_autoscale_config).then(function (browser) {})
377402

378403

379404
</script>

js/embedCss.js

Lines changed: 1 addition & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)