Monotone-Parent: 4a7be08a93cd05fcecc719eb7605cafa5e50bfcf

Monotone-Revision: 51ade360bf65e2f18177a9e121d6d9aedcc975d6

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-10-16T18:51:53
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2006-10-16 18:51:53 +00:00
parent 872599ca38
commit 8e305dee68
+4 -4
View File
@@ -671,7 +671,7 @@ function updateCalendarStatus(node)
for (var i = 0; i < nodes.length; i++) {
var currentNode = nodes[i];
if (currentNode instanceof HTMLLIElement) {
var input = currentNode.childNodes[0];
var input = currentNode.childNodes[3];
if (input.checked)
list[list.length] = currentNode.getAttribute("uid");
}
@@ -700,7 +700,7 @@ function calendarUidsList()
for (var i = 0; i < nodes.length; i++) {
var currentNode = nodes[i];
if (currentNode instanceof HTMLLIElement) {
var input = currentNode.childNodes[0];
var input = currentNode.childNodes[3];
if (!input.checked)
list += "-";
list += currentNode.getAttribute("uid") + ",";
@@ -719,7 +719,7 @@ function calendarUidsList()
// for (var i = 0; i < nodes.length; i++) {
// var currentNode = nodes[i];
// if (currentNode instanceof HTMLLIElement) {
// var input = currentNode.childNodes[0];
// var input = currentNode.childNodes[3];
// if (!input.checked)
// list += "-";
// list += currentNode.getAttribute("uid") + ",";
@@ -737,7 +737,7 @@ function inhibitMyCalendarEntry()
while (!done && i < nodes.length) {
var currentNode = nodes[i];
if (currentNode instanceof HTMLLIElement) {
var input = currentNode.childNodes[0];
var input = currentNode.childNodes[3];
if (currentNode.getAttribute("uid") == UserLogin) {
done = true;
currentNode.style.color = "#999;";