소스 검색

show toolbar on join

j8
Philipp Hancke 11 년 전
부모
커밋
3567898162
2개의 변경된 파일6개의 추가작업 그리고 5개의 파일을 삭제
  1. 0
    2
      app.js
  2. 6
    3
      css/main.css

+ 0
- 2
app.js 파일 보기

@@ -185,7 +185,6 @@ $(document).bind('callterminated.jingle', function (event, sid, reason) {
185 185
 
186 186
 
187 187
 $(document).bind('joined.muc', function (event, jid, info) {
188
-    console.log('onJoinComplete', info);
189 188
     updateRoomUrl(window.location.href);
190 189
 
191 190
     // Once we've joined the muc show the toolbar
@@ -193,7 +192,6 @@ $(document).bind('joined.muc', function (event, jid, info) {
193 192
 
194 193
     if (Object.keys(connection.emuc.members).length < 1) {
195 194
         focus = new ColibriFocus(connection, config.hosts.bridge);
196
-        return;
197 195
     }
198 196
 });
199 197
 

+ 6
- 3
css/main.css 파일 보기

@@ -147,14 +147,17 @@ html, body{
147 147
     display:none;
148 148
 }
149 149
 
150
-#header{
151
-	display:block;
150
+#header {
152 151
     height:39px;
153
-    z-index: 1;
154 152
     text-align:center;
155 153
     background-color:#087dba;
156 154
 }
157 155
 
156
+#toolbar {
157
+    visibility:hidden;
158
+    height:39px;
159
+}
160
+
158 161
 #left {
159 162
 	display:block;
160 163
     position: absolute;

Loading…
취소
저장