Fix eslint errors

This commit is contained in:
yanas 2016-10-11 19:09:16 -05:00
parent 74f31db434
commit e24d5da0ef
2 changed files with 1 additions and 2 deletions

View File

@ -38,7 +38,7 @@ class Invite {
this.setLockedFromElsewhere(locked);
});
this.conference.on(ConferenceEvents.USER_ROLE_CHANGED, (id, role) => {
this.conference.on(ConferenceEvents.USER_ROLE_CHANGED, (id) => {
if (APP.conference.isLocalId(id)
&& this.isModerator !== this.conference.isModerator) {

View File

@ -137,7 +137,6 @@ var ContactListView = {
* Setup listeners
*/
registerListeners() {
let model = this.model;
let removeContact = this.onRemoveContact.bind(this);
let changeAvatar = this.changeUserAvatar.bind(this);
let displayNameChange = this.onDisplayNameChange.bind(this);