show toolbar on join
This commit is contained in:
parent
301fa4a8a8
commit
3567898162
2
app.js
2
app.js
|
@ -185,7 +185,6 @@ $(document).bind('callterminated.jingle', function (event, sid, reason) {
|
|||
|
||||
|
||||
$(document).bind('joined.muc', function (event, jid, info) {
|
||||
console.log('onJoinComplete', info);
|
||||
updateRoomUrl(window.location.href);
|
||||
|
||||
// Once we've joined the muc show the toolbar
|
||||
|
@ -193,7 +192,6 @@ $(document).bind('joined.muc', function (event, jid, info) {
|
|||
|
||||
if (Object.keys(connection.emuc.members).length < 1) {
|
||||
focus = new ColibriFocus(connection, config.hosts.bridge);
|
||||
return;
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -147,14 +147,17 @@ html, body{
|
|||
display:none;
|
||||
}
|
||||
|
||||
#header{
|
||||
display:block;
|
||||
#header {
|
||||
height:39px;
|
||||
z-index: 1;
|
||||
text-align:center;
|
||||
background-color:#087dba;
|
||||
}
|
||||
|
||||
#toolbar {
|
||||
visibility:hidden;
|
||||
height:39px;
|
||||
}
|
||||
|
||||
#left {
|
||||
display:block;
|
||||
position: absolute;
|
||||
|
|
Loading…
Reference in New Issue