See ChangeLog.

Monotone-Parent: e40b55179af993121232d5ca1e744fb7405888e8
Monotone-Revision: 10421d31ffe1c9a616b42eda9102c2e61e336cd4

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2011-07-05T16:26:43
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Francis Lachapelle 2011-07-05 16:26:43 +00:00
parent a2fd647e6b
commit 5261652f23
2 changed files with 6 additions and 9 deletions

View File

@ -1,3 +1,9 @@
2011-07-06 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/SchedulerUI.js (onShowCompletedTasks)
(updateCalendarStatus): removed exception for Safari version prior
to 3.
2011-07-05 Ludovic Marcotte <lmarcotte@inverse.ca>
* UI/MailPartViewers/UIxMailPartICalActions.m

View File

@ -2202,10 +2202,6 @@ function onShowCompletedTasks(event) {
function updateTaskStatus(event) {
var newStatus = (this.checked ? 1 : 0);
if (isWebKit() && !isSafari3()) {
newStatus = (newStatus ? 0 : 1);
}
_updateTaskCompletion (this.parentNode, newStatus);
return false;
}
@ -2214,11 +2210,6 @@ function updateCalendarStatus(event) {
var list = [];
var newStatus = (this.checked ? 1 : 0);
if (isWebKit() && !isSafari3()) {
newStatus = (newStatus ? 0 : 1);
this.checked = newStatus;
}
var nodes = $("calendarList").childNodesWithTag("li");
for (var i = 0; i < nodes.length; i++) {
var input = $(nodes[i]).childNodesWithTag("input")[0];