diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-04-27 19:08:38 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-04-28 20:23:04 +0200 |
commit | f3acf8f41422e70b88371f0f6ed4a0b6d9723783 (patch) | |
tree | 8f053bae92d1cf650d06f5f4a109ec28693966d8 /app/javascript/flavours/glitch/features/status | |
parent | cd9a28470221f377aa9db7fb0e3e054b2633fdc1 (diff) |
Add hotkey for bookmarking a toot
Diffstat (limited to 'app/javascript/flavours/glitch/features/status')
-rw-r--r-- | app/javascript/flavours/glitch/features/status/index.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/features/status/index.js b/app/javascript/flavours/glitch/features/status/index.js index a0a9b986c..6cf8b8151 100644 --- a/app/javascript/flavours/glitch/features/status/index.js +++ b/app/javascript/flavours/glitch/features/status/index.js @@ -325,6 +325,10 @@ export default class Status extends ImmutablePureComponent { this.handleReblogClick(this.props.status); } + handleHotkeyBookmark = () => { + this.handleBookmarkClick(this.props.status); + } + handleHotkeyMention = e => { e.preventDefault(); this.handleMentionClick(this.props.status); @@ -463,6 +467,7 @@ export default class Status extends ImmutablePureComponent { reply: this.handleHotkeyReply, favourite: this.handleHotkeyFavourite, boost: this.handleHotkeyBoost, + bookmark: this.handleHotkeyBookmark, mention: this.handleHotkeyMention, openProfile: this.handleHotkeyOpenProfile, toggleSpoiler: this.handleExpandedToggle, |