mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-26 19:56:23 +00:00
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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user