Monotone-Parent: 1c35adab7fd8e06ce714bf53d059f4e01978677d

Monotone-Revision: 52144e5b0340281632f7e7aadc9ca155bba27c61

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-08-06T17:44:36
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-08-06 17:44:36 +00:00
parent 090a459f7e
commit 54f3d441c5
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -402,7 +402,7 @@ function onOkButtonClick (e) {
action = 'tentative';
else if (value == 4) {
var url = ApplicationBaseURL + activeCalendar + '/' + activeComponent;
document.modifyEventAjaxRequest = delegateInvitation(url, modifyEventCallback);
delegateInvitation(url, modifyEventCallback);
}
if (action != "")
+2 -2
View File
@@ -1588,8 +1588,8 @@ function delegateInvitation(componentUrl, callbackFunction, callbackData) {
var receiveUpdates = false; //confirm("Do you want to keep receiving updates on the event?");
var urlstr = componentUrl + "/delegate";
var parameters = "to=" + delegatedTo + "&receiveUpdates=" + (receiveUpdates?"YES":"NO");
return triggerAjaxRequest(urlstr, callbackFunction, callbackData, parameters,
{ "Content-type": "application/x-www-form-urlencoded" });
triggerAjaxRequest(urlstr, callbackFunction, callbackData, parameters,
{ "Content-type": "application/x-www-form-urlencoded" });
}
}