Small fixes

This commit is contained in:
RainLoop Team 2013-11-23 15:56:45 +04:00
parent 5f450e680f
commit a6e30e5506
5 changed files with 137 additions and 124 deletions

View file

@ -86,7 +86,19 @@ Consts.Values.SmtpDefaulSecurePort = 465;
* @const
* @type {number}
*/
Consts.Values.iMessageBodyCacheLimit = 15;
Consts.Values.MessageBodyCacheLimit = 15;
/**
* @const
* @type {number}
*/
Consts.Values.AjaxErrorLimit = 7;
/**
* @const
* @type {number}
*/
Consts.Values.TokenErrorLimit = 10;
/**
* @const

View file

@ -43,12 +43,12 @@ AbstractAjaxRemoteStorage.prototype.defaultResponse = function (fCallback, sRequ
Globals.iTokenErrorCount++;
}
if (10 < Globals.iTokenErrorCount)
if (Consts.Values.TokenErrorLimit < Globals.iTokenErrorCount)
{
RL.loginAndLogoutReload(true);
}
if (oData.Logout || 7 < Globals.iAjaxErrorCount)
if (oData.Logout || Consts.Values.AjaxErrorLimit < Globals.iAjaxErrorCount)
{
if (window.__rlah_clear)
{

View file

@ -357,7 +357,7 @@ WebMailDataStorage.prototype.purgeMessageBodyCache = function()
var
iCount = 0,
oMessagesBodiesDom = null,
iEnd = Globals.iMessageBodyCacheCount - Consts.Values.iMessageBodyCacheLimit
iEnd = Globals.iMessageBodyCacheCount - Consts.Values.MessageBodyCacheLimit
;
if (0 < iEnd)