Skip to content

Commit

Permalink
a UI fix (unable to access video playback controls in a composite mode)
Browse files Browse the repository at this point in the history
  • Loading branch information
jvo203 committed Feb 8, 2019
1 parent acc90a9 commit f67058b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion htdocs/fitswebql/fitswebql.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function get_js_version() {
return "JS2019-02-08.1";
return "JS2019-02-08.2";
}

const wasm_supported = (() => {
Expand Down Expand Up @@ -7643,6 +7643,10 @@ function display_composite_legend() {
d3.select("#IMG" + line)
.attr("src", src);
}

try {
d3.select("#videoControlG").moveToFront();
} catch (err) { };
}

function setup_image_selection_index(index, topx, topy, img_width, img_height) {
Expand Down

0 comments on commit f67058b

Please sign in to comment.