Browse Source

Merge pull request #821 from SamWhited/hql1748_update_lock_icon_on_config_change

Update lock icon when moderator changes state
master
Дамян Минков 9 years ago
parent
commit
e2c5439112
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      conference.js

+ 5
- 0
conference.js View File

@@ -1161,6 +1161,11 @@ export default {
1161 1161
             APP.UI.updateRecordingState(status);
1162 1162
         });
1163 1163
 
1164
+        room.on(ConferenceEvents.LOCK_STATE_CHANGED, (state, error) => {
1165
+            console.log("Received channel password lock change: ", state, error);
1166
+            APP.UI.markRoomLocked(state);
1167
+        });
1168
+
1164 1169
         room.on(ConferenceEvents.USER_STATUS_CHANGED, function (id, status) {
1165 1170
             APP.UI.updateUserStatus(id, status);
1166 1171
         });

Loading…
Cancel
Save