mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Fixed popup message styles (#278)
This commit is contained in:
parent
9bde3fe5dd
commit
542c46b654
6 changed files with 99 additions and 36 deletions
|
|
@ -2056,7 +2056,7 @@
|
|||
Consts = require('Consts'),
|
||||
Globals = require('Globals')
|
||||
;
|
||||
|
||||
|
||||
Utils.trim = $.trim;
|
||||
Utils.inArray = $.inArray;
|
||||
Utils.isArray = _.isArray;
|
||||
|
|
@ -3342,13 +3342,13 @@
|
|||
|
||||
oWin.document.open();
|
||||
oWin.document.write('<html><head>' +
|
||||
'<meta charset="utf-8" />' +
|
||||
'<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />' +
|
||||
'<meta name="viewport" content="user-scalable=no" />' +
|
||||
'<meta name="apple-mobile-web-app-capable" content="yes" />' +
|
||||
'<meta name="robots" content="noindex, nofollow, noodp" />' +
|
||||
'<title>' + Utils.encodeHtml(sTitle) + '</title>' +
|
||||
'</head><body><div id="rl-content"></div></body></html>');
|
||||
'<meta charset="utf-8" />' +
|
||||
'<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />' +
|
||||
'<meta name="viewport" content="user-scalable=no" />' +
|
||||
'<meta name="apple-mobile-web-app-capable" content="yes" />' +
|
||||
'<meta name="robots" content="noindex, nofollow, noodp" />' +
|
||||
'<title>' + Utils.encodeHtml(sTitle) + '</title>' +
|
||||
'</head><body><div id="rl-content"></div></body></html>');
|
||||
oWin.document.close();
|
||||
|
||||
oScript = oWin.document.createElement('script');
|
||||
|
|
|
|||
|
|
@ -4450,7 +4450,7 @@
|
|||
Consts = require('Consts'),
|
||||
Globals = require('Globals')
|
||||
;
|
||||
|
||||
|
||||
Utils.trim = $.trim;
|
||||
Utils.inArray = $.inArray;
|
||||
Utils.isArray = _.isArray;
|
||||
|
|
@ -5736,13 +5736,13 @@
|
|||
|
||||
oWin.document.open();
|
||||
oWin.document.write('<html><head>' +
|
||||
'<meta charset="utf-8" />' +
|
||||
'<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />' +
|
||||
'<meta name="viewport" content="user-scalable=no" />' +
|
||||
'<meta name="apple-mobile-web-app-capable" content="yes" />' +
|
||||
'<meta name="robots" content="noindex, nofollow, noodp" />' +
|
||||
'<title>' + Utils.encodeHtml(sTitle) + '</title>' +
|
||||
'</head><body><div id="rl-content"></div></body></html>');
|
||||
'<meta charset="utf-8" />' +
|
||||
'<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />' +
|
||||
'<meta name="viewport" content="user-scalable=no" />' +
|
||||
'<meta name="apple-mobile-web-app-capable" content="yes" />' +
|
||||
'<meta name="robots" content="noindex, nofollow, noodp" />' +
|
||||
'<title>' + Utils.encodeHtml(sTitle) + '</title>' +
|
||||
'</head><body><div id="rl-content"></div></body></html>');
|
||||
oWin.document.close();
|
||||
|
||||
oScript = oWin.document.createElement('script');
|
||||
|
|
@ -9600,9 +9600,9 @@ module.exports = window;
|
|||
this.checked = ko.observable(false);
|
||||
this.hasAttachments = ko.observable(false);
|
||||
this.attachmentsMainType = ko.observable('');
|
||||
|
||||
|
||||
this.moment = ko.observable(moment(moment.unix(0)));
|
||||
|
||||
|
||||
this.attachmentIconClass = ko.computed(function () {
|
||||
var sClass = '';
|
||||
if (this.hasAttachments())
|
||||
|
|
@ -10357,6 +10357,7 @@ module.exports = window;
|
|||
'popupCc': this.ccToLine(false),
|
||||
'popupBcc': this.bccToLine(false),
|
||||
'popupSubject': this.subject(),
|
||||
'popupIsHtml': this.isHtml(),
|
||||
'popupDate': this.fullFormatDateValue(),
|
||||
'popupAttachments': this.attachmentsToStringLine(),
|
||||
'popupBody': this.textBodyToString()
|
||||
|
|
|
|||
4
rainloop/v/0.0.0/static/js/app.min.js
vendored
4
rainloop/v/0.0.0/static/js/app.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue