mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-27 11:09:20 +03:00
Allows zooming in on mobile and tablet devices.
This commit is contained in:
parent
d20a6c2ddc
commit
c99349fc03
7 changed files with 14 additions and 9 deletions
|
|
@ -444,7 +444,6 @@ Utils.replySubjectAdd = function (sPrefix, sSubject, bFixLongSubject)
|
|||
!Utils.isUnd(oMatch[1]) && !Utils.isUnd(oMatch[2]) && !Utils.isUnd(oMatch[3]))
|
||||
{
|
||||
sResult = oMatch[1] + (Utils.pInt(oMatch[2]) + 1) + oMatch[3];
|
||||
sResult = oMatch[1] + (Utils.pInt(oMatch[2]) + 1) + oMatch[3];
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -452,7 +451,9 @@ Utils.replySubjectAdd = function (sPrefix, sSubject, bFixLongSubject)
|
|||
}
|
||||
|
||||
sResult = sResult.replace(/[\s]+/g, ' ');
|
||||
return (Utils.isUnd(bFixLongSubject) ? true : bFixLongSubject) ? Utils.fixLongSubject(sResult) : sResult;
|
||||
sResult = (Utils.isUnd(bFixLongSubject) ? true : bFixLongSubject) ? Utils.fixLongSubject(sResult) : sResult;
|
||||
// sResult = sResult.replace(/^(Re|Fwd)[\s]?\[[\d]+\]:/ig, '$1:');
|
||||
return sResult;
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue