From 89ee22a38b0b619f453fe58f835445a153fa8d32 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Tue, 3 Oct 2006 16:21:25 +0000 Subject: [PATCH] Monotone-Parent: c5930bf92c020da0372de16968ab01fdb1441b7f Monotone-Revision: dd5e6b20e9e1ea81e79dfae72ba128a3b39787b0 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-10-03T16:21:25 Monotone-Branch: ca.inverse.sogo --- UI/WebServerResources/UIxMailEditor.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/UI/WebServerResources/UIxMailEditor.js b/UI/WebServerResources/UIxMailEditor.js index 0781d2382..007b3e0b6 100644 --- a/UI/WebServerResources/UIxMailEditor.js +++ b/UI/WebServerResources/UIxMailEditor.js @@ -1,3 +1,5 @@ +var contactSelectorAction = 'mailer-contacts'; + function addContact(tag, fullContactName, contactId, contactName, contactEmail) { if (!mailIsRecipient(contactEmail)) { @@ -7,8 +9,6 @@ function addContact(tag, fullContactName, contactId, contactName, contactEmail) else if (tag == "bcc") neededOptionValue = 2; var rows = $("addressList").childNodes; -// log ("tag: /" + tag + "/"); -// log ("neededOptionValue: " + neededOptionValue); var stop = false; var counter = 0; @@ -17,7 +17,6 @@ function addContact(tag, fullContactName, contactId, contactName, contactEmail) && !stop) { var currentValue = currentRow.childNodes[0].childNodes[0].value; if (currentValue == neededOptionValue) { -// log ("currentValue: " + currentValue); stop = true; insertContact($("addr_" + counter), contactName, contactEmail); }