diff --git a/js/background.js b/js/background.js index df56fab33..2a67928c9 100644 --- a/js/background.js +++ b/js/background.js @@ -1097,12 +1097,6 @@ } }); - Whisper.events.on('showSessionRestoreConfirmation', options => { - if (appView) { - appView.showSessionRestoreConfirmation(options); - } - }); - Whisper.events.on('showNicknameDialog', options => { if (appView) { appView.showNicknameDialog(options); diff --git a/js/views/app_view.js b/js/views/app_view.js index 0e73fc33d..abe01d661 100644 --- a/js/views/app_view.js +++ b/js/views/app_view.js @@ -229,10 +229,6 @@ const dialog = new Whisper.UpdateGroupMembersDialogView(groupConvo); this.el.append(dialog.el); }, - showSessionRestoreConfirmation(options) { - const dialog = new Whisper.ConfirmSessionResetView(options); - this.el.append(dialog.el); - }, showLeaveGroupDialog(groupConvo) { let title = i18n('deleteContact'); let message = i18n('deleteContactConfirmation'); diff --git a/js/views/confirm_session_reset_view.js b/js/views/confirm_session_reset_view.js deleted file mode 100644 index aa34e420f..000000000 --- a/js/views/confirm_session_reset_view.js +++ /dev/null @@ -1,50 +0,0 @@ -/* global Whisper, i18n */ - -// eslint-disable-next-line func-names -(function() { - 'use strict'; - - window.Whisper = window.Whisper || {}; - - Whisper.ConfirmSessionResetView = Whisper.View.extend({ - className: 'loki-dialog modal', - initialize({ pubkey, onOk }) { - this.title = i18n('couldNotDecryptMessage'); - - this.onOk = onOk; - this.messageText = i18n('confirmSessionRestore', pubkey); - this.okText = i18n('yes'); - this.cancelText = i18n('cancel'); - - this.close = this.close.bind(this); - this.confirm = this.confirm.bind(this); - - this.$el.focus(); - this.render(); - }, - render() { - this.dialogView = new Whisper.ReactWrapperView({ - className: 'leave-group-dialog', - Component: window.Signal.Components.ConfirmDialog, - props: { - titleText: this.title, - messageText: this.messageText, - okText: this.okText, - cancelText: this.cancelText, - onConfirm: this.confirm, - onClose: this.close, - }, - }); - - this.$el.append(this.dialogView.el); - return this; - }, - async confirm() { - this.onOk(); - this.close(); - }, - close() { - this.remove(); - }, - }); -})(); diff --git a/stylesheets/_mentions.scss b/stylesheets/_mentions.scss index aa3deaf77..9eb3dea75 100644 --- a/stylesheets/_mentions.scss +++ b/stylesheets/_mentions.scss @@ -1,35 +1,5 @@ @import 'themes.scss'; -.leave-group-dialog { - .content { - max-width: 100% !important; - } - - .titleText { - font-size: large; - text-align: center; - margin: 2px; - } - - .ok { - background-color: orangered; - min-width: 70px; - border: none; - - &:hover { - background-color: red; - } - } - - .cancel { - border: none; - min-width: 70px; - } -} - -.member-preview { - margin-left: 10px; -} /* remove scroll bars */ .loki-dialog .add-moderators-dialog .content { diff --git a/stylesheets/manifest.scss b/stylesheets/manifest.scss index 19e96345a..3401b2b16 100644 --- a/stylesheets/manifest.scss +++ b/stylesheets/manifest.scss @@ -13,7 +13,6 @@ @import 'recorder'; @import 'emoji'; @import 'mentions'; -@import 'settings'; // Build the main view @import 'index';