oncoprintjs 6.0.6 → 6.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +3 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/js/oncoprintheaderview.ts +1 -0
- package/src/js/oncoprintminimapview.ts +1 -1
- package/src/js/oncoprintmodel.ts +1 -1
- package/src/js/oncoprinttrackoptionsview.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oncoprintjs",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.8",
|
|
4
4
|
"description": "A data visualization for cancer genomic data.",
|
|
5
5
|
"types": "./dist/js/oncoprint.d.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
"gl-matrix": "2.3.2",
|
|
57
57
|
"jquery": "^3.2.1",
|
|
58
58
|
"jstat": "^1.7.1",
|
|
59
|
-
"lodash": "^4.17.
|
|
59
|
+
"lodash": "^4.17.21",
|
|
60
60
|
"tayden-clusterfck": "^0.7.0",
|
|
61
61
|
"typescript": "4.0.3"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "55fd9b0a7ffd20d5fea0d166181bc5838e6aa4f3"
|
|
64
64
|
}
|
|
@@ -262,7 +262,7 @@ export default class OncoprintMinimapView {
|
|
|
262
262
|
})
|
|
263
263
|
.addClass('oncoprint-zoomtofit-btn')
|
|
264
264
|
.appendTo($div);
|
|
265
|
-
$(`<img src="${zoomToFitIcon}" />`)
|
|
265
|
+
$(`<img src="${zoomToFitIcon}" alt="Zoom to Fit Icon" />`)
|
|
266
266
|
.css({
|
|
267
267
|
height: btn_height - 4,
|
|
268
268
|
width: btn_width - 4,
|
package/src/js/oncoprintmodel.ts
CHANGED