Cleanup eslint

This commit is contained in:
djmaze 2021-03-12 23:56:22 +01:00
parent 5a3745a8ca
commit 87a56f5341
2 changed files with 3 additions and 3 deletions

View file

@ -38,8 +38,8 @@ class AbstractView {
keyScope(this.sCurrentKeyScope);
}
cancelCommand() {} // eslint-disable-line no-empty-function
closeCommand() {} // eslint-disable-line no-empty-function
cancelCommand() {}
closeCommand() {}
querySelector(selectors) {
return this.viewModelDom.querySelector(selectors);

View file

@ -96,7 +96,7 @@ class MessageOpenPgpPopupView extends AbstractViewPopup {
node.textContent = el === node ? '⦿' : '○'
);
self.selectedKey(ko.dataFor(el)); // eslint-disable-line no-invalid-this
self.selectedKey(ko.dataFor(el));
// this.querySelector('.inputPassword').focus();
}