diff --git a/UI/WebServerResources/UIxAppointmentEditor.js b/UI/WebServerResources/UIxAppointmentEditor.js index 478c28c60..49b2e57f6 100644 --- a/UI/WebServerResources/UIxAppointmentEditor.js +++ b/UI/WebServerResources/UIxAppointmentEditor.js @@ -104,10 +104,17 @@ function submitMeeting(thisForm) { action.setAttribute("name", "save:method"); action.setAttribute("value", "save"); + window.opener.log ("form: " + thisForm); + + window.opener.log ("validating..."); if (validateAptEditor()) { + window.opener.log ("submitting"); thisForm.submit(); + window.opener.log ("setting timeout..."); window.opener.setTimeout('refreshAppointments();', 200); + window.opener.log ("we close..."); window.close(); + window.opener.log ("closed"); } }