Browse Source

Fixes some issues caused by the merge.

j8
hristoterezov 10 years ago
parent
commit
4d25b139cc
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      index.html
  2. 1
    1
      modules/UI/videolayout/ConnectionIndicator.js

+ 1
- 1
index.html View File

158
                         <i id="mute" class="icon-microphone"></i>
158
                         <i id="mute" class="icon-microphone"></i>
159
                     </a>
159
                     </a>
160
                     <div class="header_button_separator"></div>
160
                     <div class="header_button_separator"></div>
161
-                    <a class="button" id="toolbar_button_camera" data-container="body" data-toggle="popover" data-placement="bottom" shortcut="toggleVideoPopover" content="Start / stop camera" onclick='toggleVideo();'>
161
+                    <a class="button" id="toolbar_button_camera" data-container="body" data-toggle="popover" data-placement="bottom" shortcut="toggleVideoPopover" content="Start / stop camera">
162
                         <i id="video" class="icon-camera"></i>
162
                         <i id="video" class="icon-camera"></i>
163
                     </a>
163
                     </a>
164
                     <span id="authentication" style="display: none">
164
                     <span id="authentication" style="display: none">

+ 1
- 1
modules/UI/videolayout/ConnectionIndicator.js View File

91
     }
91
     }
92
 
92
 
93
     var resolutionValue = null;
93
     var resolutionValue = null;
94
-    if(this.resolution)
94
+    if(this.resolution && this.jid != null)
95
     {
95
     {
96
         var keys = Object.keys(this.resolution);
96
         var keys = Object.keys(this.resolution);
97
         if(keys.length == 1)
97
         if(keys.length == 1)

Loading…
Cancel
Save