Skip to content

Commit

Permalink
css tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobinso committed Nov 5, 2022
1 parent 275eae3 commit 0218dcf
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 15 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ Below are examples and a quickstart guide. See the [Wiki](https://github.com/ig

# Examples

***[Alignments](https://igv.org/web/release/2.13.4/examples/cram-vcf.html)***
***[Alignments](https://igv.org/web/release/2.13.5/examples/cram-vcf.html)***

***[Interactions](https://igv.org/web/release/2.13.4/examples/interact.html)***
***[Interactions](https://igv.org/web/release/2.13.5/examples/interact.html)***

***[Copy number](https://igv.org/web/release/2.13.4/examples/copyNumber.html)***
***[Copy number](https://igv.org/web/release/2.13.5/examples/copyNumber.html)***

***[Multiple regions](https://igv.org/web/release/2.13.4/examples/multi-locus.html)***
***[Multiple regions](https://igv.org/web/release/2.13.5/examples/multi-locus.html)***

***[Mutation Annotation Format (MAF)](https://igv.org/web/release/2.13.4/examples/maf-tcga.html)***
***[Mutation Annotation Format (MAF)](https://igv.org/web/release/2.13.5/examples/maf-tcga.html)***

***[Variant color options](https://igv.org/web/release/2.13.4/examples/variant-colors.html)***
***[Variant color options](https://igv.org/web/release/2.13.5/examples/variant-colors.html)***

***[More](https://igv.org/web/release/2.13.4/examples/)***
***[More](https://igv.org/web/release/2.13.5/examples/)***


# Quickstart
Expand All @@ -33,18 +33,18 @@ Below are examples and a quickstart guide. See the [Wiki](https://github.com/ig
igv.js consists of a single javascript file with no external dependencies.

Pre-built files for ES5 (igv.min.js) and ES6 (igv.esm.min.js)
can be downloaded from [https://cdn.jsdelivr.net/npm/[email protected].4/dist/](https://cdn.jsdelivr.net/npm/[email protected].4/dist/).
can be downloaded from [https://cdn.jsdelivr.net/npm/[email protected].5/dist/](https://cdn.jsdelivr.net/npm/[email protected].5/dist/).

To import igv as an ES6 module

```javascript
import igv from "https://cdn.jsdelivr.net/npm/[email protected].4/dist/igv.esm.min.js"
import igv from "https://cdn.jsdelivr.net/npm/[email protected].5/dist/igv.esm.min.js"
```

Or as a script include (defines the "igv" global)

```html
<script src="https://cdn.jsdelivr.net/npm/[email protected].4/dist/igv.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].5/dist/igv.min.js"></script>
```

Alternatively you can install with npm
Expand Down
1 change: 1 addition & 0 deletions css/dom.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/dom.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/dom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ $igv-zoom-in-notice-height: 16px;
position: relative;

margin-top: $igv-column-item-margin-top;

line-height: 1;
overflow-x: hidden;
overflow-y: hidden;

Expand Down
2 changes: 1 addition & 1 deletion js/embedCss.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/version.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const _version = "2.13.4"
const _version = "2.13.5"
function version() {
return _version
}
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": "igv",
"version": "2.13.4",
"version": "2.13.5",
"main": "dist/igv.esm.js",
"browser": "dist/igv.js",
"module": "dist/igv.esm.js",
Expand Down

0 comments on commit 0218dcf

Please sign in to comment.