|
|
|
@ -297,7 +297,7 @@
|
|
|
|
|
this.setDisappearingMessages(seconds),
|
|
|
|
|
|
|
|
|
|
onGoBack: () => {
|
|
|
|
|
this.$('.conversation-content-right').hide();
|
|
|
|
|
this.hideConversationRight();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
onUpdateGroupName: () => {
|
|
|
|
@ -340,6 +340,17 @@
|
|
|
|
|
onClicked: this.selectMember.bind(this),
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.hideConversationRight = () => {
|
|
|
|
|
this.$('.conversation-content-right').css({
|
|
|
|
|
'margin-right': '-22vw',
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
this.showConversationRight = () => {
|
|
|
|
|
this.$('.conversation-content-right').css({
|
|
|
|
|
'margin-right': '0vw',
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
this.showGroupSettings = () => {
|
|
|
|
|
if (!this.groupSettings) {
|
|
|
|
|
this.groupSettings = new Whisper.ReactWrapperView({
|
|
|
|
@ -354,11 +365,12 @@
|
|
|
|
|
} else {
|
|
|
|
|
this.groupSettings.update(getGroupSettingsProps(this.model));
|
|
|
|
|
}
|
|
|
|
|
this.$('.conversation-content-right').show();
|
|
|
|
|
|
|
|
|
|
this.showConversationRight();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
this.hideGroupSettings = () => {
|
|
|
|
|
this.$('.conversation-content-right').hide();
|
|
|
|
|
this.showConversationRight();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
this.memberView.render();
|
|
|
|
|