From 1eb8f8e6b15f454dfd4ec5079b6a03ecfe92c58e Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 26 Aug 2020 09:51:40 +1000 Subject: [PATCH] remove ConfirmationDialogView unused --- background.html | 1 - background_test.html | 1 - js/views/confirmation_dialog_view.js | 61 ---------------------------- permissions_popup.html | 12 ------ test/index.html | 12 ------ ts/util/lint/exceptions.json | 10 +---- 6 files changed, 1 insertion(+), 96 deletions(-) delete mode 100644 js/views/confirmation_dialog_view.js diff --git a/background.html b/background.html index 86ced40e2..852ffa77d 100644 --- a/background.html +++ b/background.html @@ -378,7 +378,6 @@ - diff --git a/background_test.html b/background_test.html index a36da178e..42daa9eae 100644 --- a/background_test.html +++ b/background_test.html @@ -388,7 +388,6 @@ - diff --git a/js/views/confirmation_dialog_view.js b/js/views/confirmation_dialog_view.js deleted file mode 100644 index a62e1024c..000000000 --- a/js/views/confirmation_dialog_view.js +++ /dev/null @@ -1,61 +0,0 @@ -/* global Whisper, i18n */ - -// eslint-disable-next-line func-names -(function() { - 'use strict'; - - window.Whisper = window.Whisper || {}; - - Whisper.ConfirmationDialogView = Whisper.View.extend({ - className: 'confirmation-dialog modal', - templateName: 'confirmation-dialog', - initialize(options) { - this.message = options.message; - this.hideCancel = options.hideCancel; - - this.resolve = options.resolve; - this.okText = options.okText || i18n('ok'); - - this.reject = options.reject; - this.cancelText = options.cancelText || i18n('cancel'); - - this.title = options.title; - - this.render(); - }, - events: { - keyup: 'onKeyup', - 'click .ok': 'ok', - 'click .cancel': 'cancel', - }, - render_attributes() { - return { - message: this.message, - showCancel: !this.hideCancel, - cancel: this.cancelText, - ok: this.okText, - title: this.title, - }; - }, - ok() { - this.remove(); - if (this.resolve) { - this.resolve(); - } - }, - cancel() { - this.remove(); - if (this.reject) { - this.reject(); - } - }, - onKeyup(event) { - if (event.key === 'Escape' || event.key === 'Esc') { - this.cancel(); - } - }, - focusCancel() { - this.$('.cancel').focus(); - }, - }); -})(); diff --git a/permissions_popup.html b/permissions_popup.html index e95b75ef0..f1fe49dfa 100644 --- a/permissions_popup.html +++ b/permissions_popup.html @@ -19,20 +19,8 @@ - - diff --git a/test/index.html b/test/index.html index fba0ec92a..7d9622297 100644 --- a/test/index.html +++ b/test/index.html @@ -117,17 +117,6 @@ - - diff --git a/ts/util/lint/exceptions.json b/ts/util/lint/exceptions.json index 4ff8f304f..7f8921a4b 100644 --- a/ts/util/lint/exceptions.json +++ b/ts/util/lint/exceptions.json @@ -372,15 +372,7 @@ "updated": "2018-09-19T18:13:29.628Z", "reasonDetail": "Interacting with already-existing DOM nodes" }, - { - "rule": "jQuery-$(", - "path": "js/views/confirmation_dialog_view.js", - "line": " this.$('.cancel').focus();", - "lineNumber": 55, - "reasonCategory": "usageTrusted", - "updated": "2018-09-19T21:59:32.770Z", - "reasonDetail": "Protected from arbitrary input" - }, + { "rule": "jQuery-append(", "path": "js/views/contact_list_view.js",