Allow parameter to be passed to always show cha ton side of screen
This commit is contained in:
parent
82bda0b0ab
commit
200346ee5d
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue