Skip to content

Commit

Permalink
set job submit dialog box dimensions to auto
Browse files Browse the repository at this point in the history
  • Loading branch information
isaak committed Jul 21, 2023
1 parent a9f196f commit 5fba930
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions js/source/legacy/solGS/cluster.js
Original file line number Diff line number Diff line change
Expand Up @@ -1176,8 +1176,8 @@ jQuery(document).ready(function () {
jQuery(jobSubmit).appendTo("body");

jQuery("#cluster_submit").dialog({
height: 200,
width: 400,
height: "auto",
width: "auto",
modal: true,
title: "cluster job submission",
buttons: {
Expand Down
4 changes: 2 additions & 2 deletions js/source/legacy/solGS/kinship.js
Original file line number Diff line number Diff line change
Expand Up @@ -366,8 +366,8 @@ jQuery(document).ready(function () {
jQuery(jobSubmit).appendTo("body");

jQuery("#kinship_submit").dialog({
height: 200,
width: 400,
height: "auto",
width: "auto",
modal: true,
title: "Kinship job submission",
buttons: {
Expand Down
4 changes: 2 additions & 2 deletions js/source/legacy/solGS/pca.js
Original file line number Diff line number Diff line change
Expand Up @@ -1008,8 +1008,8 @@ jQuery(document).ready(function () {
jQuery(jobSubmit).appendTo("body");

jQuery("#pca_submit").dialog({
height: 200,
width: 400,
height: "auto",
width: "auto",
modal: true,
title: "pca job submission",
buttons: {
Expand Down

0 comments on commit 5fba930

Please sign in to comment.