From df904d06abd63438626749140f7ebea85ce0424c Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Fri, 28 May 2010 12:34:42 +0000 Subject: [PATCH] reindentation Monotone-Parent: ca4bfaf6d10fea0ae84895923106ebe5660e6279 Monotone-Revision: a641a4defe2d11d4baa914640535e45ef48f0425 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2010-05-28T12:34:42 Monotone-Branch: ca.inverse.sogo --- UI/WebServerResources/UIxAppointmentEditor.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/UI/WebServerResources/UIxAppointmentEditor.js b/UI/WebServerResources/UIxAppointmentEditor.js index 2122d98b8..030eeb6fb 100644 --- a/UI/WebServerResources/UIxAppointmentEditor.js +++ b/UI/WebServerResources/UIxAppointmentEditor.js @@ -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); + }); } }