Fixes some positions of elements from the welcome page. Adds "Join Again" button to hangup message box.
This commit is contained in:
parent
c06c1caad8
commit
c00f60f57b
13
app.js
13
app.js
|
@ -1376,10 +1376,17 @@ function hangup() {
|
||||||
|
|
||||||
$.prompt("Session Terminated",
|
$.prompt("Session Terminated",
|
||||||
{
|
{
|
||||||
title: "You hang up the call",
|
title: "You hung up the call",
|
||||||
persistent: true,
|
persistent: true,
|
||||||
buttons: {},
|
buttons: {
|
||||||
closeText: ''
|
"Join again": true
|
||||||
|
},
|
||||||
|
closeText: '',
|
||||||
|
submit: function(event, value, message, formVals)
|
||||||
|
{
|
||||||
|
window.location.reload();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
|
@ -152,16 +152,13 @@
|
||||||
#brand_header
|
#brand_header
|
||||||
{
|
{
|
||||||
background-image:url(../images/welcome_page/header-big.png);
|
background-image:url(../images/welcome_page/header-big.png);
|
||||||
position:absolute;
|
|
||||||
width: 583px;
|
width: 583px;
|
||||||
height: 274px;
|
height: 274px;
|
||||||
left: 340px;
|
margin: -55px auto 0px auto;
|
||||||
top:15px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#header_text
|
#header_text
|
||||||
{
|
{
|
||||||
position: absolute;
|
|
||||||
left: 200px;
|
left: 200px;
|
||||||
top: 150px;
|
top: 150px;
|
||||||
width: 885px;
|
width: 885px;
|
||||||
|
@ -170,6 +167,7 @@
|
||||||
font-family: Helvetica;
|
font-family: Helvetica;
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
margin: -139px auto 0px auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#features
|
#features
|
||||||
|
|
Loading…
Reference in New Issue