mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-19 20:09:28 +00:00
Monotone-Parent: d5a35d507386b7213ff2f2e4f5f37c9c22f0c2ae
Monotone-Revision: a11424d99fd81b4c47bf7609d4e4e9ec4e1b0ab2 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-06-05T18:07:08 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -172,22 +172,21 @@ function closeInvitationWindow() {
|
||||
}
|
||||
|
||||
function modifyEventCallback(http) {
|
||||
if (http.readyState == 4) {
|
||||
if (http.status == 200) {
|
||||
log("closing window...?");
|
||||
if (queryParameters["mail-invitation"] == "yes")
|
||||
closeInvitationWindow();
|
||||
else {
|
||||
window.opener.setTimeout("refreshAppointmentsAndDisplay();", 100);
|
||||
window.setTimeout("window.close();", 100);
|
||||
if (http.readyState == 4) {
|
||||
if (http.status == 200) {
|
||||
if (queryParameters["mail-invitation"].toLowerCase() == "yes")
|
||||
closeInvitationWindow();
|
||||
else {
|
||||
window.opener.setTimeout("refreshAppointmentsAndDisplay();", 100);
|
||||
window.setTimeout("window.close();", 100);
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
log("showing alert...");
|
||||
window.alert(labels["eventPartStatModificationError"]);
|
||||
}
|
||||
document.modifyEventAjaxRequest = null;
|
||||
}
|
||||
else {
|
||||
log("showing alert...");
|
||||
window.alert(labels["eventPartStatModificationError"]);
|
||||
}
|
||||
document.modifyEventAjaxRequest = null;
|
||||
}
|
||||
}
|
||||
|
||||
function deleteEventCallback(http) {
|
||||
|
||||
Reference in New Issue
Block a user