aboutsummaryrefslogtreecommitdiff
path: root/ext/js/input/hotkey-util.js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/js/input/hotkey-util.js')
-rw-r--r--ext/js/input/hotkey-util.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/js/input/hotkey-util.js b/ext/js/input/hotkey-util.js
index bb3e82a8..e4392e27 100644
--- a/ext/js/input/hotkey-util.js
+++ b/ext/js/input/hotkey-util.js
@@ -38,7 +38,7 @@ export class HotkeyUtil {
['meta', -4],
['ctrl', -3],
['alt', -2],
- ['shift', -1]
+ ['shift', -1],
]);
/** @type {Intl.Collator} */
this._stringComparer = new Intl.Collator('en-US'); // Invariant locale
@@ -243,14 +243,14 @@ export class HotkeyUtil {
['alt', 'Alt'],
['ctrl', 'Ctrl'],
['shift', 'Shift'],
- ['meta', 'Windows']
+ ['meta', 'Windows'],
];
case 'mac':
return [
['alt', 'Opt'],
['ctrl', 'Ctrl'],
['shift', 'Shift'],
- ['meta', 'Cmd']
+ ['meta', 'Cmd'],
];
case 'linux':
case 'openbsd':
@@ -260,14 +260,14 @@ export class HotkeyUtil {
['alt', 'Alt'],
['ctrl', 'Ctrl'],
['shift', 'Shift'],
- ['meta', 'Super']
+ ['meta', 'Super'],
];
default: // 'unknown', etc
return [
['alt', 'Alt'],
['ctrl', 'Ctrl'],
['shift', 'Shift'],
- ['meta', 'Meta']
+ ['meta', 'Meta'],
];
}
}