summaryrefslogtreecommitdiffstats
path: root/web/react/components/rhs_root_post.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-09-21 12:19:57 -0400
committerChristopher Speller <crspeller@gmail.com>2015-09-21 12:19:57 -0400
commitee5a77ec56ee13f5eb96fce6065b4b7a1845de89 (patch)
treeecbc93078768643f771921ce885739db9a2ec2cd /web/react/components/rhs_root_post.jsx
parent977ab87d4a9d809a2db12bd3d80cd1c4bbd38be4 (diff)
parent3e868a6042123dae02814d70aa05533d61e9283e (diff)
downloadchat-ee5a77ec56ee13f5eb96fce6065b4b7a1845de89.tar.gz
chat-ee5a77ec56ee13f5eb96fce6065b4b7a1845de89.tar.bz2
chat-ee5a77ec56ee13f5eb96fce6065b4b7a1845de89.zip
Merge pull request #734 from mattermost/plt-206
PLT-206 Fix first channel load scrolling issue on Windows and iOS and add emoji to RHS.
Diffstat (limited to 'web/react/components/rhs_root_post.jsx')
-rw-r--r--web/react/components/rhs_root_post.jsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/web/react/components/rhs_root_post.jsx b/web/react/components/rhs_root_post.jsx
index 13da8101d..2ea697c5b 100644
--- a/web/react/components/rhs_root_post.jsx
+++ b/web/react/components/rhs_root_post.jsx
@@ -20,6 +20,7 @@ export default class RhsRootPost extends React.Component {
}
parseEmojis() {
twemoji.parse(React.findDOMNode(this), {size: Constants.EMOJI_SIZE});
+ global.window.emojify.run(React.findDOMNode(this.refs.message_holder));
}
componentDidMount() {
this.parseEmojis();
@@ -148,6 +149,7 @@ export default class RhsRootPost extends React.Component {
</ul>
<div className='post-body'>
<div
+ ref='message_holder'
onClick={TextFormatting.handleClick}
dangerouslySetInnerHTML={{__html: TextFormatting.formatText(post.message)}}
/>