Monotone-Parent: fefaafed986a915928894d60a2029a6c2099cf60

Monotone-Revision: 0f464782bb3af280dca9ef5556b8be2fc0e437ff

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-10-11T18:11:06
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2006-10-11 18:11:06 +00:00
parent 3c971bea8b
commit 7296fedfb6

View File

@@ -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");
}
}