Monotone-Parent: ba5973b414572fb5f085f8980182645843a42958

Monotone-Revision: 778ca12e99d197e109e23159f48ce1b32026519c

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2007-11-05T14:37:26
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2007-11-05 14:37:26 +00:00
parent 5ede94bbaa
commit c6b33b514f
6 changed files with 11 additions and 11 deletions

View File

@@ -23,7 +23,7 @@
* It's required that "currentIndex" is defined in a top level context.
*
* Exports:
* defines UIxRecipientSelectorHasRecipients() returning a bool for the
* defines hasRecipients() returning a bool for the
* surrounding context to check.
*/
@@ -179,16 +179,16 @@ function getAddressIDs() {
addressIDs = new Array();
addressList = $("addressList");
addressList = $("addressList").tBodies[0];
rows = addressList.childNodes;
count = rows.length;
for (i = 0; i < count; i++) {
var row, rowId;
row = addressList.childNodes[i];
row = rows[i];
rowId = row.id;
if (rowId && rowId != 'row_last') {
if (rowId && rowId != 'lastRow') {
var idx;
idx = this.getIndexFromIdentifier(rowId);
@@ -215,7 +215,7 @@ function getAddressCount() {
return addressCount;
}
function UIxRecipientSelectorHasRecipients() {
function hasRecipients() {
var count;
count = this.getAddressCount();