Skip to content

Commit

Permalink
W.I.P. SMIME:
Browse files Browse the repository at this point in the history
- Reposition the iframe in mail preview after the attachments are set
  • Loading branch information
hnategh committed Jul 13, 2017
1 parent cb784c2 commit 4e4999a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions mail/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -5748,11 +5748,22 @@ app.classes.mail = AppJS.extend(
{
var attachmentArea = this.et2.getWidgetById(egw(window).is_popup()?'mail_displayattachments':'previewAttachmentArea');
var content = this.et2.getArrayMgr('content');
var mailPreview = this.et2.getWidgetById('mailPreviewContainer');
if (attachmentArea && _attachments && _attachments.length > 0)
{
content.data[attachmentArea.id] = _attachments;
this.et2.setArrayMgr('contnet', content);
attachmentArea.set_value({content:_attachments});
if (attachmentArea.id == 'previewAttachmentArea')
{
var a_node = attachmentArea.getDOMNode();
var m_node = mailPreview.getDOMNode();
var offset = m_node.offsetTop - a_node.offsetTop;
if (a_node.offsetTop + a_node.offsetHeight > m_node.offsetTop)
{
m_node.style.setProperty('top', m_node.offsetTop + offset+"px");
}
}
}
},
/**
Expand Down

0 comments on commit 4e4999a

Please sign in to comment.