mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 12:09:20 +03:00
Updated: ckeditor
This commit is contained in:
parent
7b5d00ff01
commit
52dcd44036
266 changed files with 4500 additions and 12312 deletions
|
|
@ -179,8 +179,11 @@
|
|||
*/
|
||||
AbstractApp.prototype.setWindowTitle = function (sTitle)
|
||||
{
|
||||
sTitle = ((Utils.isNormal(sTitle) && 0 < sTitle.length) ? sTitle + ' - ' : '') +
|
||||
Settings.settingsGet('Title') || '';
|
||||
sTitle = ((Utils.isNormal(sTitle) && 0 < sTitle.length) ? '' + sTitle : '');
|
||||
if (Settings.settingsGet('Title'))
|
||||
{
|
||||
sTitle += (sTitle ? ' - ' : '') + Settings.settingsGet('Title');
|
||||
}
|
||||
|
||||
window.document.title = sTitle + ' ...';
|
||||
window.document.title = sTitle;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue