Added "[labs] startup_url" setting

This commit is contained in:
RainLoop Team 2015-05-16 00:15:22 +04:00
parent 9a98bff931
commit 28d93f70ae
4 changed files with 13 additions and 3 deletions

View file

@ -39,11 +39,12 @@
};
/**
* @param {string=} sStartupUrl
* @return {string}
*/
Links.prototype.root = function ()
Links.prototype.root = function (sStartupUrl)
{
return this.sBase;
return this.sBase + Utils.pString(sStartupUrl);
};
/**