Updated: ckeditor

This commit is contained in:
RainLoop Team 2015-10-14 21:28:58 +03:00
parent 7b5d00ff01
commit 52dcd44036
266 changed files with 4500 additions and 12312 deletions

View file

@ -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;