mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-03 02:25:25 +00:00
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:
@@ -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;";
|
||||
|
||||
Reference in New Issue
Block a user