|
|
|
@ -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();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|