summaryrefslogtreecommitdiffstats
path: root/webapp/components/rhs_thread/rhs_thread.jsx
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2017-07-12 17:37:04 -0400
committerSaturnino Abril <saturnino.abril@gmail.com>2017-07-13 06:37:04 +0900
commit26370f6eabe17744f8d23b5f815632cf7493387b (patch)
tree1c0587080760c2f35900839676438d5d162a059c /webapp/components/rhs_thread/rhs_thread.jsx
parentdf3290c4cf93101b5104e7395d9a0af208eff513 (diff)
downloadchat-26370f6eabe17744f8d23b5f815632cf7493387b.tar.gz
chat-26370f6eabe17744f8d23b5f815632cf7493387b.tar.bz2
chat-26370f6eabe17744f8d23b5f815632cf7493387b.zip
PLT-7062 Moved emoji picker in RHS to attach to the body of the page (#6923)
Diffstat (limited to 'webapp/components/rhs_thread/rhs_thread.jsx')
-rw-r--r--webapp/components/rhs_thread/rhs_thread.jsx11
1 files changed, 1 insertions, 10 deletions
diff --git a/webapp/components/rhs_thread/rhs_thread.jsx b/webapp/components/rhs_thread/rhs_thread.jsx
index 5ce6af018..58325e8cc 100644
--- a/webapp/components/rhs_thread/rhs_thread.jsx
+++ b/webapp/components/rhs_thread/rhs_thread.jsx
@@ -319,10 +319,6 @@ export default class RhsThread extends React.Component {
});
}
- getPostListContainer = () => {
- return this.refs.postListContainer;
- }
-
getSidebarBody = () => {
return this.refs.sidebarbody;
}
@@ -403,7 +399,6 @@ export default class RhsThread extends React.Component {
isFlagged={isFlagged}
status={status}
isBusy={this.state.isBusy}
- getPostList={this.getPostListContainer}
removePost={this.props.actions.removePost}
/>
</div>
@@ -439,10 +434,7 @@ export default class RhsThread extends React.Component {
renderView={renderView}
onScroll={this.handleScroll}
>
- <div
- ref='postListContainer'
- className='post-right__scroll'
- >
+ <div className='post-right__scroll'>
<DateSeparator
date={rootPostDay}
/>
@@ -458,7 +450,6 @@ export default class RhsThread extends React.Component {
status={rootStatus}
previewCollapsed={this.state.previewsCollapsed}
isBusy={this.state.isBusy}
- getPostList={this.getPostListContainer}
/>
<div
ref='rhspostlist'