mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-12 20:05:08 +00:00
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:
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user