X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/97e3a42d5041515e4c135220b1836805e76a2d94..7497b21c937bb6e8451f16047945b7cfc9081a53:/apps/workbench/app/views/application/report_issue_popup.js.erb diff --git a/apps/workbench/app/views/application/report_issue_popup.js.erb b/apps/workbench/app/views/application/report_issue_popup.js.erb index 513bf7db65..73830ee049 100644 --- a/apps/workbench/app/views/application/report_issue_popup.js.erb +++ b/apps/workbench/app/views/application/report_issue_popup.js.erb @@ -1,7 +1,12 @@ $("#report-issue-modal-window").html("<%= escape_javascript(render partial: 'report_issue_popup') %>"); +$("#report-issue-modal-window .modal").modal('show'); -// reset form input fields, for the next time around -function reset_form() { - $('#report_text').val(""); - $('#additional_info').val(""); -} +// Disable the submit button on modal loading +$submit = $('#report-issue-submit'); +$submit.prop('disabled', true); + +// capture events to enable submit button when applicable +$('#report_issue_text').bind('input propertychange', function() { + var problem_desc = document.forms["report-issue-form"]["report_issue_text"].value; + $submit.prop('disabled', (problem_desc === null) || (problem_desc === "")); +});