summaryrefslogtreecommitdiffstats
path: root/webapp/actions/global_actions.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/actions/global_actions.jsx')
-rw-r--r--webapp/actions/global_actions.jsx8
1 files changed, 8 insertions, 0 deletions
diff --git a/webapp/actions/global_actions.jsx b/webapp/actions/global_actions.jsx
index 2b65beffd..dc5617dde 100644
--- a/webapp/actions/global_actions.jsx
+++ b/webapp/actions/global_actions.jsx
@@ -577,3 +577,11 @@ export function postListScrollChange(forceScrollToBottom = false) {
value: forceScrollToBottom
});
}
+
+export function emitPopoverMentionKeyClick(isRHS, mentionKey) {
+ AppDispatcher.handleViewAction({
+ type: ActionTypes.POPOVER_MENTION_KEY_CLICK,
+ isRHS,
+ mentionKey
+ });
+}