Allow parameter to be passed to always show cha ton side of screen

This commit is contained in:
John McLear 2012-02-05 14:23:01 +00:00
parent 82bda0b0ab
commit 200346ee5d

View file

@ -99,6 +99,7 @@ function getParams()
var IsnoColors = params["noColors"];
var hideQRCode = params["hideQRCode"];
var rtl = params["rtl"];
var alwaysShowChat = params["alwaysShowChat"];
if(IsnoColors)
{
@ -153,6 +154,13 @@ function getParams()
settings.rtlIsTrue = true
}
}
if(alwaysShowChat)
{
if(alwaysShowChat == "true")
{
chat.stickToScreen();
}
}
}
function getUrlVars()