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",
|
||||
{
|
||||
title: "You hang up the call",
|
||||
title: "You hung up the call",
|
||||
persistent: true,
|
||||
buttons: {},
|
||||
closeText: ''
|
||||
buttons: {
|
||||
"Join again": true
|
||||
},
|
||||
closeText: '',
|
||||
submit: function(event, value, message, formVals)
|
||||
{
|
||||
window.location.reload();
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
);
|
||||
|
|
|
@ -152,16 +152,13 @@
|
|||
#brand_header
|
||||
{
|
||||
background-image:url(../images/welcome_page/header-big.png);
|
||||
position:absolute;
|
||||
width: 583px;
|
||||
height: 274px;
|
||||
left: 340px;
|
||||
top:15px;
|
||||
margin: -55px auto 0px auto;
|
||||
}
|
||||
|
||||
#header_text
|
||||
{
|
||||
position: absolute;
|
||||
left: 200px;
|
||||
top: 150px;
|
||||
width: 885px;
|
||||
|
@ -170,6 +167,7 @@
|
|||
font-family: Helvetica;
|
||||
font-size: 24px;
|
||||
text-align: center;
|
||||
margin: -139px auto 0px auto;
|
||||
}
|
||||
|
||||
#features
|
||||
|
|
Loading…
Reference in New Issue