Skip to content

Commit

Permalink
On node change, we need to blur() here; otherwise the active input is…
Browse files Browse the repository at this point in the history
… still potentially a hidden input field behind the scenes. Amazing this hasn't been a bug before now?
  • Loading branch information
dannon committed Dec 5, 2017
1 parent 4d3abb5 commit be6b52d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions client/galaxy/scripts/mvc/workflow/workflow-manager.js
Expand Up @@ -306,6 +306,7 @@ $.extend(Workflow.prototype, {
if (this.active_node != node) {
this.check_changes_in_active_form();
this.clear_active_node();
document.activeElement.blur();
this.app.showForm(node.config_form, node);
node.make_active();
this.active_node = node;
Expand Down

0 comments on commit be6b52d

Please sign in to comment.