From 081d5c22c795939a2b555fabf9daf42933e6ae99 Mon Sep 17 00:00:00 2001 From: Reed Garmsen Date: Tue, 9 Feb 2016 13:16:16 -0800 Subject: Added permalink feature to posts in the RHS --- web/react/components/rhs_root_post.jsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'web/react/components/rhs_root_post.jsx') diff --git a/web/react/components/rhs_root_post.jsx b/web/react/components/rhs_root_post.jsx index f9f7f8f81..54f2e8262 100644 --- a/web/react/components/rhs_root_post.jsx +++ b/web/react/components/rhs_root_post.jsx @@ -21,6 +21,7 @@ export default class RhsRootPost extends React.Component { super(props); this.parseEmojis = this.parseEmojis.bind(this); + this.handlePermalink = this.handlePermalink.bind(this); this.state = {}; } @@ -31,6 +32,10 @@ export default class RhsRootPost extends React.Component { folder: Emoji.getImagePathForEmoticon() }); } + handlePermalink(e) { + e.preventDefault(); + EventHelpers.showGetPostLinkModal(this.props.post); + } componentDidMount() { this.parseEmojis(); } @@ -83,6 +88,23 @@ export default class RhsRootPost extends React.Component { var dropdownContents = []; + dropdownContents.push( +
  • + + + +
  • + ); + if (isOwner) { dropdownContents.push(