From 7296fedfb6d29da3f8f3598830130a552eede8a4 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Wed, 11 Oct 2006 18:11:06 +0000 Subject: [PATCH] Monotone-Parent: fefaafed986a915928894d60a2029a6c2099cf60 Monotone-Revision: 0f464782bb3af280dca9ef5556b8be2fc0e437ff Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-10-11T18:11:06 Monotone-Branch: ca.inverse.sogo --- UI/WebServerResources/UIxAppointmentEditor.js | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/UI/WebServerResources/UIxAppointmentEditor.js b/UI/WebServerResources/UIxAppointmentEditor.js index ad4962edb..09927a9a0 100644 --- a/UI/WebServerResources/UIxAppointmentEditor.js +++ b/UI/WebServerResources/UIxAppointmentEditor.js @@ -100,21 +100,20 @@ function validateAptEditor() { } function submitMeeting(thisForm) { - var action = document.getElementById('jsaction'); - action.setAttribute("name", "save:method"); - action.setAttribute("value", "save"); +// var action = document.getElementById('jsaction'); +// action.setAttribute("name", "save:method"); +// action.setAttribute("value", "save"); - window.opener.log ("form: " + thisForm); - - window.opener.log ("validating..."); + log ("form: " + thisForm); + log ("validating..."); if (validateAptEditor()) { - window.opener.log ("submitting"); + log ("submitting"); thisForm.submit(); - window.opener.log ("setting timeout..."); + log ("setting timeout..."); window.opener.setTimeout('refreshAppointments();', 200); - window.opener.log ("we close..."); + log ("we close..."); window.close(); - window.opener.log ("closed"); + log ("closed"); } }