Fixes some welcome page minor issues.
This commit is contained in:
parent
78467a4cd0
commit
b82786947a
3
app.js
3
app.js
|
@ -1027,12 +1027,13 @@ function getCameraVideoSize(videoWidth,
|
|||
}
|
||||
|
||||
$(document).ready(function () {
|
||||
document.title = brand.appName;
|
||||
|
||||
if(config.enableWelcomePage && window.location.pathname == "/" &&
|
||||
(!window.localStorage.welcomePageDisabled || window.localStorage.welcomePageDisabled == "false"))
|
||||
{
|
||||
$("#videoconference_page").hide();
|
||||
$("#domain_name").text(window.location.host + "/");
|
||||
$("#domain_name").text(window.location.protocol + "//" + window.location.host + "/");
|
||||
$("span[name='appName']").text(brand.appName);
|
||||
function enter_room()
|
||||
{
|
||||
|
|
|
@ -189,6 +189,7 @@
|
|||
float:left;
|
||||
width: 169px;
|
||||
padding-left: 75px;
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
|
||||
.feature_icon
|
||||
|
@ -203,12 +204,12 @@
|
|||
/*font-weight: bold;*/
|
||||
text-align: center;
|
||||
display: table-cell;
|
||||
padding: 50px 29px 0px 17px;
|
||||
padding: 50px 26px 0px 20px;
|
||||
}
|
||||
|
||||
.feature_description
|
||||
{
|
||||
width: 169px;
|
||||
width: 190px;
|
||||
font-family: Helvetica;
|
||||
color: #ffffff;
|
||||
font-size: 16px;
|
||||
|
|
Loading…
Reference in New Issue