diff options
author | Thibaut Girka <thib@sitedethib.com> | 2018-07-24 20:58:32 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2018-07-26 22:19:01 +0200 |
commit | a8911616b6abdd95d00b1b17dd231a683726c006 (patch) | |
tree | 10ba319928d5f29f9feb010f9f894764c3153ff6 /app | |
parent | b156fc4b4dd634f37431e54d03555689d8419e69 (diff) |
Add hotkey variants to keyboard shortcuts description
Port 89c6d2bd6bc014ca6487c8f2569f8252fb3ef5dc to glitch-soc
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/flavours/glitch/features/keyboard_shortcuts/index.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/javascript/flavours/glitch/features/keyboard_shortcuts/index.js b/app/javascript/flavours/glitch/features/keyboard_shortcuts/index.js index 7f059b627..79b341faf 100644 --- a/app/javascript/flavours/glitch/features/keyboard_shortcuts/index.js +++ b/app/javascript/flavours/glitch/features/keyboard_shortcuts/index.js @@ -49,7 +49,7 @@ export default class KeyboardShortcuts extends ImmutablePureComponent { <td><FormattedMessage id='keyboard_shortcuts.boost' defaultMessage='to boost' /></td> </tr> <tr> - <td><kbd>enter</kbd></td> + <td><kbd>enter</kbd>, <kbd>o</kbd></td> <td><FormattedMessage id='keyboard_shortcuts.enter' defaultMessage='to open status' /></td> </tr> <tr> @@ -57,11 +57,11 @@ export default class KeyboardShortcuts extends ImmutablePureComponent { <td><FormattedMessage id='keyboard_shortcuts.toggle_hidden' defaultMessage='to show/hide text behind CW' /></td> </tr> <tr> - <td><kbd>up</kbd></td> + <td><kbd>up</kbd>, <kbd>k</kbd></td> <td><FormattedMessage id='keyboard_shortcuts.up' defaultMessage='to move up in the list' /></td> </tr> <tr> - <td><kbd>down</kbd></td> + <td><kbd>down</kbd>, <kbd>j</kbd></td> <td><FormattedMessage id='keyboard_shortcuts.down' defaultMessage='to move down in the list' /></td> </tr> <tr> |