Monotone-Parent: 9b4c2eadc3d38aa14dc504c80d606df816c2f924

Monotone-Revision: 0df73c55c83973b5088ccb3350d103006525098c

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-10-03T14:38:51
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2006-10-03 14:38:51 +00:00
parent 99f54a17ec
commit 29f8ab0852
3 changed files with 76 additions and 20 deletions
+1 -16
View File
@@ -153,7 +153,7 @@ function removeLastEditedRowIfEmpty() {
addresses.removeChild(addr);
}
addressList = $("addressList");
senderRow = this.findRowWithIndex(idx);
senderRow = $("row_" + idx);
addressList.removeChild(senderRow);
this.adjustInlineAttachmentListHeight(this);
}
@@ -170,11 +170,6 @@ function findAddressWithIndex(idx) {
return null;
}
function findRowWithIndex(idx) {
var id = 'row_' + idx;
return $(id);
}
function getIndexFromIdentifier(id) {
return id.split('_')[1];
}
@@ -245,15 +240,5 @@ function adjustInlineAttachmentListHeight(sender) {
}
}
function hideInlineAttachmentList(sender) {
var e;
// xVisibility('compose_rightside', false);
e = $('compose_rightside');
e.style.display = 'none';
e = $('compose_leftside');
e.style.width = "100%";
}
/* addressbook helpers */