|
|
|
@ -50,6 +50,25 @@
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const MessageTTLSettingView = Whisper.View.extend({
|
|
|
|
|
initialize(options) {
|
|
|
|
|
this.value = options.value;
|
|
|
|
|
this.setFn = options.setFn;
|
|
|
|
|
this.populate();
|
|
|
|
|
},
|
|
|
|
|
events: {
|
|
|
|
|
change: 'change',
|
|
|
|
|
},
|
|
|
|
|
change(e) {
|
|
|
|
|
this.value = e.target.value;
|
|
|
|
|
this.setFn(this.value);
|
|
|
|
|
window.log.info('message-ttl-setting changed to', this.value);
|
|
|
|
|
},
|
|
|
|
|
populate() {
|
|
|
|
|
this.$('input').val(this.value);
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const ReadReceiptSettingView = Whisper.View.extend({
|
|
|
|
|
initialize(options) {
|
|
|
|
|
this.value = options.value;
|
|
|
|
@ -141,6 +160,11 @@
|
|
|
|
|
value: window.initialData.readReceiptSetting,
|
|
|
|
|
setFn: window.setReadReceiptSetting,
|
|
|
|
|
});
|
|
|
|
|
new MessageTTLSettingView({
|
|
|
|
|
el: this.$('.message-ttl-setting'),
|
|
|
|
|
value: window.initialData.messageTTL,
|
|
|
|
|
setFn: window.setMessageTTL,
|
|
|
|
|
});
|
|
|
|
|
const blockedNumberView = new Whisper.BlockedNumberView().render();
|
|
|
|
|
this.$('.blocked-user-setting').append(blockedNumberView.el);
|
|
|
|
|
|
|
|
|
@ -176,6 +200,8 @@
|
|
|
|
|
permissions: i18n('permissions'),
|
|
|
|
|
mediaPermissionsDescription: i18n('mediaPermissionsDescription'),
|
|
|
|
|
readReceiptSettingDescription: i18n('readReceiptSettingDescription'),
|
|
|
|
|
messageTTL: i18n('messageTTL'),
|
|
|
|
|
messageTTLSettingDescription: i18n('messageTTLSettingDescription'),
|
|
|
|
|
spellCheckHeader: i18n('spellCheck'),
|
|
|
|
|
spellCheckDescription: i18n('spellCheckDescription'),
|
|
|
|
|
blockedHeader: 'Blocked Users',
|
|
|
|
|