summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_right.jsx
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-08-13 16:00:55 -0700
committerReed Garmsen <rgarmsen2295@gmail.com>2015-08-13 16:00:55 -0700
commit3a55cc6dcb8e45b65debd7569a49961faa55b402 (patch)
tree5f6db3ce530d0aa3a699de81100363830fa864d1 /web/react/components/post_right.jsx
parent6f68c508ee3fd8c54fc1ba314cc60bae3f0b2600 (diff)
downloadchat-3a55cc6dcb8e45b65debd7569a49961faa55b402.tar.gz
chat-3a55cc6dcb8e45b65debd7569a49961faa55b402.tar.bz2
chat-3a55cc6dcb8e45b65debd7569a49961faa55b402.zip
Minor refactoring for better maintainibility
Diffstat (limited to 'web/react/components/post_right.jsx')
-rw-r--r--web/react/components/post_right.jsx9
1 files changed, 3 insertions, 6 deletions
diff --git a/web/react/components/post_right.jsx b/web/react/components/post_right.jsx
index 09cd8cb56..e46979ff7 100644
--- a/web/react/components/post_right.jsx
+++ b/web/react/components/post_right.jsx
@@ -11,6 +11,7 @@ var SearchBox =require('./search_bar.jsx');
var CreateComment = require( './create_comment.jsx' );
var Constants = require('../utils/constants.jsx');
var FileAttachmentList = require('./file_attachment_list.jsx');
+var FileUploadOverlay = require('./file_upload_overlay.jsx');
var ActionTypes = Constants.ActionTypes;
RhsHeaderPost = React.createClass({
@@ -296,12 +297,8 @@ module.exports = React.createClass({
return (
<div className="post-right__container">
- <div className='file-overlay right-file-overlay invisible'>
- <div>
- <i className="fa fa-upload"></i>
- <span>Drop a file to upload it.</span>
- </div>
- </div>
+ <FileUploadOverlay
+ overlayType='right' />
<div className="search-bar__container sidebar--right__search-header">{searchForm}</div>
<div className="sidebar-right__body">
<RhsHeaderPost fromSearch={this.props.fromSearch} isMentionSearch={this.props.isMentionSearch} />