Monotone-Parent: 16fb66f0179e8a827bfa00706cecde4d330bcf4e

Monotone-Revision: 54c85a5614fa048abcccf4fa8fca5d26070fe53f

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-10-18T21:49:04
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2006-10-18 21:49:04 +00:00
parent d36413d01e
commit df35bb01fd

View File

@@ -134,35 +134,6 @@ function clickedEditorDelete(sender) {
return true;
}
function showInlineAttachmentList(sender) {
var r, l;
r = $('compose_rightside');
r.style.display = 'block';
l = $('compose_leftside');
l.style.width = "67%";
this.adjustInlineAttachmentListHeight(sender);
}
function updateInlineAttachmentList(sender, attachments) {
if (!attachments || (attachments.length == 0)) {
// this.hideInlineAttachmentList(sender);
return;
}
var e, i, count, text;
count = attachments.length;
text = "";
for (i = 0; i < count; i++) {
text = text + attachments[i];
text = text + '<br />';
}
e = $('compose_attachments_list');
e.innerHTML = text;
this.showInlineAttachmentList(sender);
}
function openAddressbook(sender) {
var urlstr;