From 8a7f25bcf4df12cf98908ca71216f64b949fc589 Mon Sep 17 00:00:00 2001 From: RainLoop Team Date: Tue, 3 Dec 2013 04:16:57 +0400 Subject: [PATCH] set Title function simple fix --- dev/Boots/AbstractApp.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dev/Boots/AbstractApp.js b/dev/Boots/AbstractApp.js index 82d9dba1a..bd6df331d 100644 --- a/dev/Boots/AbstractApp.js +++ b/dev/Boots/AbstractApp.js @@ -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); }; /**