Cheeky lint and name change

pull/569/head
Beaudan Brown 6 years ago
parent b56dfbabaf
commit f52bc4d5b5

@ -93,7 +93,11 @@
initialize(options) {
this.listenTo(this.model, 'destroy', this.stopListening);
this.listenTo(this.model, 'change:verified', this.onVerifiedChange);
this.listenTo(this.model, 'change:friendRequestStatus', this.updateFileLock);
this.listenTo(
this.model,
'change:friendRequestStatus',
this.onFriendStatusChange
);
this.listenTo(this.model, 'newmessage', this.addMessage);
this.listenTo(this.model, 'opened', this.onOpened);
this.listenTo(this.model, 'prune', this.onPrune);
@ -161,7 +165,7 @@
);
this.render();
this.updateFileLock();
this.onFriendStatusChange();
this.model.updateTextInputState();
@ -623,11 +627,11 @@
}
},
updateFileLock() {
onFriendStatusChange() {
if (this.model.isPrivate() && !this.model.isFriend()) {
this.$('#choose-file').hide()
this.$('#choose-file').hide();
} else {
this.$('#choose-file').show()
this.$('#choose-file').show();
}
},

Loading…
Cancel
Save