mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-08 17:07:03 +03:00
Idea code for #951
This commit is contained in:
parent
614e6c5756
commit
e2391d1ad2
1 changed files with 5 additions and 2 deletions
|
|
@ -334,11 +334,14 @@ export class MessageModel extends AbstractModel {
|
||||||
}
|
}
|
||||||
|
|
||||||
viewPopupMessage(print) {
|
viewPopupMessage(print) {
|
||||||
const timeStampInUTC = this.dateTimeStampInUTC() || 0,
|
const
|
||||||
|
timeStampInUTC = this.dateTimeStampInUTC() || 0,
|
||||||
ccLine = this.cc.toString(),
|
ccLine = this.cc.toString(),
|
||||||
bccLine = this.bcc.toString(),
|
bccLine = this.bcc.toString(),
|
||||||
m = 0 < timeStampInUTC ? new Date(timeStampInUTC * 1000) : null,
|
m = 0 < timeStampInUTC ? new Date(timeStampInUTC * 1000) : null,
|
||||||
win = open(''),
|
win = open('', 'sm-msg-'+this.requestHash
|
||||||
|
/*,newWindow ? 'innerWidth=' + elementById('V-MailMessageView').clientWidth : ''*/
|
||||||
|
),
|
||||||
sdoc = win.document,
|
sdoc = win.document,
|
||||||
subject = encodeHtml(this.subject()),
|
subject = encodeHtml(this.subject()),
|
||||||
mode = this.isHtml() ? 'div' : 'pre',
|
mode = this.isHtml() ? 'div' : 'pre',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue