mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-29 18:12:44 +00:00
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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user