set Title function simple fix

This commit is contained in:
RainLoop Team 2013-12-03 04:16:57 +04:00
parent 0f7ebc084a
commit 8a7f25bcf4

View file

@ -145,10 +145,8 @@ AbstractApp.prototype.setTitle = function (sTitle)
sTitle = ((0 < sTitle.length) ? sTitle + ' - ' : '') +
RL.settingsGet('Title') || '';
window.document.title = '_';
window.document.title = sTitle;
_.delay(function () {
window.document.title = sTitle;
}, 5);
};
/**