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
This commit is contained in:
Francis Lachapelle
2011-07-05 16:26:43 +00:00
parent a2fd647e6b
commit 5261652f23
2 changed files with 6 additions and 9 deletions
-9
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];