Browse Source

Update lock icon when moderator changes state

j8
Sam Whited 9 years ago
parent
commit
3e269978d9
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      conference.js

+ 5
- 0
conference.js View File

@@ -1175,6 +1175,11 @@ export default {
1175 1175
             APP.UI.updateRecordingState(status);
1176 1176
         });
1177 1177
 
1178
+        room.on(ConferenceEvents.LOCK_STATE_CHANGED, (state, error) => {
1179
+            console.log("Received channel password lock change: ", state, error);
1180
+            APP.UI.markRoomLocked(state);
1181
+        });
1182
+
1178 1183
         room.on(ConferenceEvents.USER_STATUS_CHANGED, function (id, status) {
1179 1184
             APP.UI.updateUserStatus(id, status);
1180 1185
         });

Loading…
Cancel
Save