Browse Source

Fix eslint errors

j8
yanas 8 years ago
parent
commit
e24d5da0ef

+ 1
- 1
modules/UI/invite/Invite.js View File

38
             this.setLockedFromElsewhere(locked);
38
             this.setLockedFromElsewhere(locked);
39
         });
39
         });
40
 
40
 
41
-        this.conference.on(ConferenceEvents.USER_ROLE_CHANGED, (id, role) => {
41
+        this.conference.on(ConferenceEvents.USER_ROLE_CHANGED, (id) => {
42
             if (APP.conference.isLocalId(id)
42
             if (APP.conference.isLocalId(id)
43
                     && this.isModerator !== this.conference.isModerator) {
43
                     && this.isModerator !== this.conference.isModerator) {
44
 
44
 

+ 0
- 1
modules/UI/side_pannels/contactlist/ContactListView.js View File

137
      * Setup listeners
137
      * Setup listeners
138
      */
138
      */
139
     registerListeners() {
139
     registerListeners() {
140
-        let model = this.model;
141
         let removeContact = this.onRemoveContact.bind(this);
140
         let removeContact = this.onRemoveContact.bind(this);
142
         let changeAvatar = this.changeUserAvatar.bind(this);
141
         let changeAvatar = this.changeUserAvatar.bind(this);
143
         let displayNameChange = this.onDisplayNameChange.bind(this);
142
         let displayNameChange = this.onDisplayNameChange.bind(this);

Loading…
Cancel
Save