From f3c62e3fecf6c09ab42c1337dba09cb4a712e7af Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Thu, 7 Sep 2006 19:00:16 +0000 Subject: [PATCH] Monotone-Parent: eb4be993b8aa1a70806a19e9980e936bdb9b448a Monotone-Revision: 4ce1a15200da85e7f90d8d248cd95b6615bc707e Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-09-07T19:00:16 Monotone-Branch: ca.inverse.sogo --- UI/WebServerResources/UIxAppointmentEditor.js | 7 +++++++ 1 file changed, 7 insertions(+) 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"); } }