Skip to content

Commit

Permalink
Idea code for #951
Browse files Browse the repository at this point in the history
  • Loading branch information
the-djmaze committed Feb 14, 2023
1 parent 614e6c5 commit e2391d1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions dev/Model/Message.js
Original file line number Diff line number Diff line change
Expand Up @@ -334,11 +334,14 @@ export class MessageModel extends AbstractModel {
}

viewPopupMessage(print) {
const timeStampInUTC = this.dateTimeStampInUTC() || 0,
const
timeStampInUTC = this.dateTimeStampInUTC() || 0,
ccLine = this.cc.toString(),
bccLine = this.bcc.toString(),
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,
subject = encodeHtml(this.subject()),
mode = this.isHtml() ? 'div' : 'pre',
Expand Down

0 comments on commit e2391d1

Please sign in to comment.