Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
turner committed Feb 6, 2025
1 parent 1990e6e commit a1e8d10
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 20 deletions.
8 changes: 2 additions & 6 deletions dist/juicebox.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -90553,11 +90553,7 @@ class HICBrowser {
jsonOBJ.name = this.dataset.name;
}

if (jsonOBJ.stateJSON) {
jsonOBJ.stateJSON = this.state.toJSON();
} else {
jsonOBJ.state = this.state.stringify();
}
jsonOBJ.state = this.state.stringify();

jsonOBJ.colorScale = this.contactMatrixView.getColorScale().stringify();
if (Globals.selectedGene) {
Expand Down Expand Up @@ -90873,7 +90869,7 @@ function setDefaults(config) {
}
}

const version = "2.5.1";
const version = "2.5.2";
//, commit}

function toJSON() {
Expand Down
8 changes: 2 additions & 6 deletions dist/juicebox.js
Original file line number Diff line number Diff line change
Expand Up @@ -90559,11 +90559,7 @@
jsonOBJ.name = this.dataset.name;
}

if (jsonOBJ.stateJSON) {
jsonOBJ.stateJSON = this.state.toJSON();
} else {
jsonOBJ.state = this.state.stringify();
}
jsonOBJ.state = this.state.stringify();

jsonOBJ.colorScale = this.contactMatrixView.getColorScale().stringify();
if (Globals.selectedGene) {
Expand Down Expand Up @@ -90879,7 +90875,7 @@
}
}

const version = "2.5.1";
const version = "2.5.2";
//, commit}

function toJSON() {
Expand Down
2 changes: 1 addition & 1 deletion dist/juicebox.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/juicebox.min.js.map

Large diffs are not rendered by default.

6 changes: 1 addition & 5 deletions js/hicBrowser.js
Original file line number Diff line number Diff line change
Expand Up @@ -1379,11 +1379,7 @@ class HICBrowser {
jsonOBJ.name = this.dataset.name
}

if (jsonOBJ.stateJSON) {
jsonOBJ.stateJSON = this.state.toJSON()
} else {
jsonOBJ.state = this.state.stringify()
}
jsonOBJ.state = this.state.stringify()

jsonOBJ.colorScale = this.contactMatrixView.getColorScale().stringify()
if (Globals.selectedGene) {
Expand Down
2 changes: 1 addition & 1 deletion js/version.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
const version = "2.5.1"
const version = "2.5.2"
export {version} //, commit}

0 comments on commit a1e8d10

Please sign in to comment.