aboutsummaryrefslogtreecommitdiff
path: root/ext/js/pages/settings/keyboard-shortcuts-controller.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2024-02-19 07:30:17 -0500
committerGitHub <noreply@github.com>2024-02-19 12:30:17 +0000
commit2da866f982930c76d2317a3be426410683ecf5a2 (patch)
treee77ce545177ba398068cb63037096a56dea04e2c /ext/js/pages/settings/keyboard-shortcuts-controller.js
parent65fa65fc7765bc9a6557d3ce6f8bdcef5b5e0cf7 (diff)
Update eslint rules (#710)
Diffstat (limited to 'ext/js/pages/settings/keyboard-shortcuts-controller.js')
-rw-r--r--ext/js/pages/settings/keyboard-shortcuts-controller.js24
1 files changed, 12 insertions, 12 deletions
diff --git a/ext/js/pages/settings/keyboard-shortcuts-controller.js b/ext/js/pages/settings/keyboard-shortcuts-controller.js
index 0a01b836..b1ea6bb0 100644
--- a/ext/js/pages/settings/keyboard-shortcuts-controller.js
+++ b/ext/js/pages/settings/keyboard-shortcuts-controller.js
@@ -191,7 +191,7 @@ export class KeyboardShortcutController {
*/
_onAddClick(e) {
e.preventDefault();
- this._addNewEntry();
+ void this._addNewEntry();
}
/**
@@ -199,7 +199,7 @@ export class KeyboardShortcutController {
*/
_onResetClick(e) {
e.preventDefault();
- this._reset();
+ void this._reset();
}
/** */
@@ -350,16 +350,16 @@ class KeyboardShortcutHotkeyEntry {
_onMenuClose(e) {
switch (e.detail.action) {
case 'delete':
- this._delete();
+ void this._delete();
break;
case 'clearInputs':
/** @type {KeyboardMouseInputField} */ (this._inputField).clearInputs();
break;
case 'resetInput':
- this._resetInput();
+ void this._resetInput();
break;
case 'resetArgument':
- this._resetArgument();
+ void this._resetArgument();
break;
}
}
@@ -404,7 +404,7 @@ class KeyboardShortcutHotkeyEntry {
if (modifier2 === null) { continue; }
modifiers2.push(modifier2);
}
- this._setKeyAndModifiers(key, modifiers2);
+ void this._setKeyAndModifiers(key, modifiers2);
}
/**
@@ -414,7 +414,7 @@ class KeyboardShortcutHotkeyEntry {
const node = /** @type {HTMLInputElement} */ (e.currentTarget);
const scope = this._normalizeScope(node.dataset.scope);
if (scope === null) { return; }
- this._setScopeEnabled(scope, node.checked);
+ void this._setScopeEnabled(scope, node.checked);
}
/**
@@ -423,7 +423,7 @@ class KeyboardShortcutHotkeyEntry {
_onActionSelectChange(e) {
const node = /** @type {HTMLSelectElement} */ (e.currentTarget);
const value = node.value;
- this._setAction(value);
+ void this._setAction(value);
}
/**
@@ -438,12 +438,12 @@ class KeyboardShortcutHotkeyEntry {
value = `${convertElementValueToNumber(value, node)}`;
break;
}
- this._setArgument(value);
+ void this._setArgument(value);
}
/** */
async _delete() {
- this._parent.deleteEntry(this._index);
+ void this._parent.deleteEntry(this._index);
}
/**
@@ -607,7 +607,7 @@ class KeyboardShortcutHotkeyEntry {
this._setArgumentInputValue(node, value);
}
- this._updateArgumentInputValidity();
+ void this._updateArgumentInputValidity();
await this._modifyProfileSettings([{
action: 'set',
@@ -702,7 +702,7 @@ class KeyboardShortcutHotkeyEntry {
if (inputNode !== null) {
this._setArgumentInputValue(inputNode, argument);
this._argumentInput = inputNode;
- this._updateArgumentInputValidity();
+ void this._updateArgumentInputValidity();
this._argumentEventListeners.addEventListener(inputNode, 'change', this._onArgumentValueChange.bind(this, template), false);
}
if (this._argumentContainer !== null) {