reindentation

Monotone-Parent: ca4bfaf6d10fea0ae84895923106ebe5660e6279
Monotone-Revision: a641a4defe2d11d4baa914640535e45ef48f0425

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-05-28T12:34:42
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau 2010-05-28 12:34:42 +00:00
parent d17341abe8
commit df904d06ab

View file

@ -115,9 +115,9 @@ function onComposeToAllAttendees()
var attendees = $$("DIV#attendeesMenu LI.attendee");
var addresses = new Array();
attendees.each(function(item) {
var address = item.firstChild.nodeValue.trim() + " <" + item.readAttribute("email") + ">";
addresses.push(address);
});
var address = item.firstChild.nodeValue.trim() + " <" + item.readAttribute("email") + ">";
addresses.push(address);
});
if (window.opener)
window.opener.openMailTo(addresses.join(","));
}
@ -130,9 +130,9 @@ function onComposeToUndecidedAttendees()
var attendees = $$("DIV#attendeesMenu LI.attendee.needs-action");
var addresses = new Array();
attendees.each(function(item) {
var address = item.firstChild.nodeValue.trim() + " <" + item.readAttribute("email") + ">";
addresses.push(address);
});
var address = item.firstChild.nodeValue.trim() + " <" + item.readAttribute("email") + ">";
addresses.push(address);
});
if (window.opener)
window.opener.openMailTo(addresses.join(","));
}
@ -312,8 +312,8 @@ function refreshAttendeesRO() {
// Register "click" event on each attendee's email
var attendees = attendeesMenu.getElementsByTagName('a');
$A(attendees).each(function(attendee) {
$(attendee).observe("click", onMailTo);
});
$(attendee).observe("click", onMailTo);
});
}
}